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

add gallery to boxset page

This commit is contained in:
Luke Pulverenti 2013-04-16 23:15:18 -04:00
parent 701be2b831
commit 68844b8f7e

View file

@ -1,5 +1,7 @@
(function ($, document, LibraryBrowser) {
var currentItem;
function reload(page) {
var id = getParameterByName('id');
@ -8,6 +10,8 @@
ApiClient.getItem(Dashboard.getCurrentUserId(), id).done(function (item) {
currentItem = item;
var name = item.Name;
$('#itemImage', page).html(LibraryBrowser.getDetailImageHtml(item));
@ -18,6 +22,12 @@
renderDetails(page, item);
if (LibraryBrowser.shouldDisplayGallery(item)) {
$('#galleryCollapsible', page).show();
} else {
$('#galleryCollapsible', page).hide();
}
Dashboard.hideLoadingMsg();
});
}
@ -78,6 +88,13 @@
});
}
function renderGallery(page, item) {
var html = LibraryBrowser.getGalleryHtml(item);
$('#galleryContent', page).html(html).trigger('create');
}
$(document).on('pageshow', "#boxsetPage", function () {
var page = this;
@ -90,12 +107,20 @@
$(this).off('expand.lazyload');
});
$('#galleryCollapsible', page).on('expand.lazyload', function () {
renderGallery(page, currentItem);
$(this).off('expand.lazyload');
});
}).on('pagehide', "#boxsetPage", function () {
var page = this;
$('#moviesCollapsible', page).off('expand.lazyload');
$('#galleryCollapsible', page).off('expand.lazyload');
});