From bf27cbf559c1379b66cc1fc2b6f80ae8ec1ebb2f Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Fri, 10 Oct 2025 00:19:10 +0300 Subject: [PATCH] Disable touch tooltip support for standard buttons Commented out the call to addTouchTooltipSupport in enableStandardButtonTooltips, removing touch tooltip support for standard video player buttons. This may be to address issues with tooltip behavior on mobile devices. --- .../video-js/src/components/video-player/VideoJSPlayer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.jsx b/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.jsx index 70e5dbd0..ffc80278 100644 --- a/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.jsx +++ b/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.jsx @@ -65,7 +65,7 @@ const enableStandardButtonTooltips = (player) => { buttonEl.setAttribute('aria-label', tooltipText); // Add touch tooltip support for mobile devices - addTouchTooltipSupport(buttonEl); + //addTouchTooltipSupport(buttonEl); // For dynamic tooltips (play/pause, fullscreen), update on state change if (buttonName === 'playToggle') {