(e: TouchEvent)
| 219 | { passive: true }, |
| 220 | ); |
| 221 | const onVolumeTouchMove = (e: TouchEvent) => { |
| 222 | if (volumeScrubbing) { |
| 223 | const touch = e.touches[0]; |
| 224 | if (touch) handleVolumeAt(touch.clientX); |
| 225 | } |
| 226 | }; |
| 227 | const onVolumeTouchEnd = () => { |
| 228 | volumeScrubbing = false; |
| 229 | }; |
nothing calls this directly
no test coverage detected