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

Merge pull request #618 from Wunax/fix-bug-hiding-videoosd-buttons

Fix a bug that hides children elements in the videoosd
This commit is contained in:
dkanada 2019-12-10 22:53:44 +09:00 committed by GitHub
commit 5badb22aa3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -402,6 +402,8 @@ define(["playbackManager", "dom", "inputManager", "datetime", "itemHelper", "med
function onHideAnimationComplete(e) {
var elem = e.target;
if (elem != osdBottomElement)
return;
elem.classList.add("hide");
dom.removeEventListener(elem, transitionEndEventName, onHideAnimationComplete, {
once: true