固定视频进度
()
| 3597 | } |
| 3598 | /** 固定视频进度 */ |
| 3599 | function fixProcessBar() { |
| 3600 | const bar = document.querySelector<HTMLElement>('.controlsBar'); |
| 3601 | if (bar) { |
| 3602 | bar.style.display = 'block'; |
| 3603 | // 适配 wisdomh5 |
| 3604 | bar.style.zIndex = '2'; |
| 3605 | bar.style.overflow = ''; |
| 3606 | } |
| 3607 | } |
| 3608 | |
| 3609 | function closeDialogRead() { |
| 3610 | const div = document.querySelector<HTMLElement>('.dialog-read'); |
no outgoing calls
no test coverage detected