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

added keyframe setting

This commit is contained in:
Luke Pulverenti 2015-08-28 13:39:52 -04:00
parent 3bae11071d
commit b18aec8344
12 changed files with 50 additions and 18 deletions

View file

@ -186,7 +186,6 @@
},
enableFullPaperTabs: function () {
return AppInfo.isNativeApp;
},
@ -306,8 +305,7 @@
return;
}
$(document).one('pageshowready', '.page', function () {
var afterNavigate = function () {
if (getWindowUrl().toLowerCase().indexOf(url.toLowerCase()) != -1) {
var pages = this.querySelector('neon-animated-pages');
@ -329,9 +327,15 @@
tabs.noSlide = noSlide;
}
}
});
};
Dashboard.navigate(url);
if (getWindowUrl().toLowerCase().indexOf(url.toLowerCase()) != -1) {
afterNavigate.call($($.mobile.activePage)[0]);
} else {
$(document).one('pageshowready', '.page', afterNavigate);
Dashboard.navigate(url);
}
},
canShare: function (item, user) {