(clientX: number)
| 283 | document.addEventListener("click", onDocClick); |
| 284 | |
| 285 | const handleScrubAt = (clientX: number) => { |
| 286 | const rect = scrubber.getBoundingClientRect(); |
| 287 | const fraction = Math.max(0, Math.min(1, (clientX - rect.left) / rect.width)); |
| 288 | callbacks.onSeek(fraction); |
| 289 | }; |
| 290 | |
| 291 | let scrubbing = false; |
| 292 |
no test coverage detected