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-08-06 10:07:44 -04:00
parent 556b64e92c
commit a8a609a04d
39 changed files with 121 additions and 1198 deletions

View file

@ -86,7 +86,7 @@
elem.classList.add('hide');
};
if (!browser.animate || browser.mobile) {
if (!browser.animate || browser.slow) {
onfinish();
return;
}
@ -108,7 +108,7 @@
elem.classList.remove('hide');
if (!browser.animate || browser.mobile) {
if (!browser.animate || browser.slow) {
return;
}
@ -130,7 +130,7 @@
elem.classList.remove('hide');
if (!browser.animate || browser.mobile) {
if (!browser.animate || browser.slow) {
return;
}
@ -320,7 +320,7 @@
document.body.insertAdjacentHTML('beforeend', getNowPlayingBarHtml());
nowPlayingBarElement = document.querySelector('.nowPlayingBar');
if (browser.safari && browser.mobile) {
if (browser.safari && browser.slow) {
// Not handled well here. The wrong elements receive events, bar doesn't update quickly enough, etc.
nowPlayingBarElement.classList.add('noMediaProgress');
}