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

update components

This commit is contained in:
Luke Pulverenti 2016-11-27 00:00:20 -05:00
parent c7b2fa8dc1
commit 087c2139c6
17 changed files with 442 additions and 381 deletions

View file

@ -52,7 +52,7 @@
}
var onAnimationComplete = function () {
dom.removeEventListener(backdropImage, 'animationend', onAnimationComplete, {
dom.removeEventListener(backdropImage, dom.whichAnimationEvent(), onAnimationComplete, {
once: true
});
if (backdropImage === currentAnimatingElement) {
@ -63,7 +63,7 @@
}
};
dom.addEventListener(backdropImage, 'animationend', onAnimationComplete, {
dom.addEventListener(backdropImage, dom.whichAnimationEvent(), onAnimationComplete, {
once: true
});