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

fix gallery not passing in item

This commit is contained in:
Luke Pulverenti 2013-04-15 21:09:27 -04:00
parent 0f1bb2b8be
commit 2b53479479
6 changed files with 23 additions and 27 deletions

View file

@ -85,10 +85,7 @@
function renderGallery(page, item) {
var imageTags = item.ImageTags || {};
var html = '';
html += LibraryBrowser.renderGallery(imageTags);
var html = LibraryBrowser.getGalleryHtml(item);
$('#galleryContent', page).html(html).trigger('create');
}