(e: TouchEvent)
| 314 | { passive: true }, |
| 315 | ); |
| 316 | const onTouchMove = (e: TouchEvent) => { |
| 317 | if (scrubbing) { |
| 318 | const touch = e.touches[0]; |
| 319 | if (touch) handleScrubAt(touch.clientX); |
| 320 | } |
| 321 | }; |
| 322 | const onTouchEnd = () => { |
| 323 | scrubbing = false; |
| 324 | }; |
nothing calls this directly
no test coverage detected