mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
20 lines
443 B
JavaScript
20 lines
443 B
JavaScript
|
(function () {
|
|||
|
|
|||
|
Dashboard.importCss('themes/halloween/style.css');
|
|||
|
|
|||
|
|
|||
|
function onPageShow() {
|
|||
|
var page = this;
|
|||
|
|
|||
|
if (!$.browser.mobile) {
|
|||
|
Backdrops.setBackdropUrl(page, 'themes/halloween/bg.jpg');
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
pageClassOn('pageshow', "libraryPage", onPageShow);
|
|||
|
|
|||
|
if ($($.mobile.activePage)[0].classList.contains('libraryPage')) {
|
|||
|
onPageShow.call($($.mobile.activePage)[0]);
|
|||
|
}
|
|||
|
|
|||
|
})();
|