1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #5653 from dmitrylyzo/fix-videoosd-hide

Fix video OSD not fully hiding
This commit is contained in:
Bill Thornton 2024-06-04 14:55:30 -04:00 committed by GitHub
commit 74a3bd8768
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -323,18 +323,14 @@ export default function (view) {
} }
function clearHideAnimationEventListeners(elem) { function clearHideAnimationEventListeners(elem) {
dom.removeEventListener(elem, transitionEndEventName, onHideAnimationComplete, { elem.removeEventListener(transitionEndEventName, onHideAnimationComplete);
once: true
});
} }
function onHideAnimationComplete(e) { function onHideAnimationComplete(e) {
const elem = e.target; const elem = e.target;
if (elem != osdBottomElement) return; if (elem != osdBottomElement) return;
elem.classList.add('hide'); elem.classList.add('hide');
dom.removeEventListener(elem, transitionEndEventName, onHideAnimationComplete, { elem.removeEventListener(transitionEndEventName, onHideAnimationComplete);
once: true
});
} }
const _focus = debounce((focusElement) => focusManager.focus(focusElement), 50); const _focus = debounce((focusElement) => focusManager.focus(focusElement), 50);
@ -364,9 +360,7 @@ export default function (view) {
clearHideAnimationEventListeners(elem); clearHideAnimationEventListeners(elem);
elem.classList.add('videoOsdBottom-hidden'); elem.classList.add('videoOsdBottom-hidden');
dom.addEventListener(elem, transitionEndEventName, onHideAnimationComplete, { elem.addEventListener(transitionEndEventName, onHideAnimationComplete);
once: true
});
currentVisibleMenu = null; currentVisibleMenu = null;
toggleSubtitleSync('hide'); toggleSubtitleSync('hide');