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

update dialogs

This commit is contained in:
Luke Pulverenti 2015-12-03 12:11:40 -05:00
parent a5be57afdc
commit 2027714898
5 changed files with 20 additions and 15 deletions

View file

@ -96,10 +96,14 @@
}
}
//// seeing max call stack size exceeded in the debugger with this
// seeing max call stack size exceeded in the debugger with this
dlg.setAttribute('noAutoFocus', 'noAutoFocus');
dlg.entryAnimation = 'scale-up-animation';
dlg.exitAnimation = 'fade-out-animation';
// These don't seem to perform well on mobile
if (!browserInfo.mobile) {
dlg.entryAnimation = 'scale-up-animation';
dlg.exitAnimation = 'fade-out-animation';
}
dlg.classList.add('popupEditor');