From f97de44a0cfe31b276ae43777dbdf8b6955c965b Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Sun, 31 May 2026 12:21:19 +0200 Subject: [PATCH] gfds --- public/s/js/v0ck.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/s/js/v0ck.js b/public/s/js/v0ck.js index c406659..e3bb3d4 100644 --- a/public/s/js/v0ck.js +++ b/public/s/js/v0ck.js @@ -421,6 +421,7 @@ class v0ck { let activeMouseGesture = false; player.addEventListener('mousedown', e => { + if (isMobile) return; if (e.button !== 0) return; const path = e.path || (e.composedPath && e.composedPath()); const isControls = !!path.filter(f => f.classList?.contains('v0ck_player_controls')).length; @@ -750,6 +751,7 @@ class v0ck { // Speedup 2x on Hold logic function startSpeedUp(e) { + if (e.type === 'mousedown' && isMobile) return; // Only left mouse click or touch triggers speedup if (e.type === 'mousedown' && e.button !== 0) return;