mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
c7b2fa8dc1
commit
087c2139c6
17 changed files with 442 additions and 381 deletions
|
@ -246,12 +246,12 @@
|
|||
if (enableAnimation()) {
|
||||
|
||||
var onFinish = function () {
|
||||
dom.removeEventListener(dlg, 'animationend', onFinish, {
|
||||
dom.removeEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||
once: true
|
||||
});
|
||||
onAnimationFinish();
|
||||
};
|
||||
dom.addEventListener(dlg, 'animationend', onFinish, {
|
||||
dom.addEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||
once: true
|
||||
});
|
||||
return;
|
||||
|
@ -281,12 +281,12 @@
|
|||
break;
|
||||
}
|
||||
var onFinish = function () {
|
||||
dom.removeEventListener(dlg, 'animationend', onFinish, {
|
||||
dom.removeEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||
once: true
|
||||
});
|
||||
onAnimationFinish();
|
||||
};
|
||||
dom.addEventListener(dlg, 'animationend', onFinish, {
|
||||
dom.addEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||
once: true
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue