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.
This commit is contained in:
Yiannis Christodoulou 2025-10-10 00:19:10 +03:00
parent 523ae2e736
commit bf27cbf559

View File

@ -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') {