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

added music and game genre image downloading

This commit is contained in:
Luke Pulverenti 2014-01-02 18:07:37 -05:00
parent 1bea110fe6
commit 7ec31feea3
4 changed files with 9 additions and 8 deletions

View file

@ -34,7 +34,7 @@
shape: "square",
context: 'music',
showTitle: true,
overlayText: true
coverImage: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);

View file

@ -33,7 +33,7 @@
shape: "square",
context: 'music',
showTitle: true,
overlayText: true
coverImage: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);

View file

@ -29,9 +29,13 @@
var checkSortOption = $('.radioSortBy:checked', page);
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
html += LibraryBrowser.getPosterDetailViewHtml({
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
context: "music"
shape: "backdrop",
preferThumb: true,
context: 'music',
showItemCounts: true,
centerText: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);