support manual downloading of studio images

This commit is contained in:
Luke Pulverenti 2013-12-29 01:36:13 -05:00
parent dfec6b307b
commit 1e6afbaffa
2 changed files with 7 additions and 6 deletions

View File

@ -843,10 +843,8 @@
else {
if (item.Name && options.showTitle) {
imgUrl = 'css/images/items/list/collection.png';
background = LibraryBrowser.getMetroColor(item.Id);
} else {
background = defaultBackground;
}
background = defaultBackground;
}

View File

@ -29,10 +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: "tv",
shape: "backdrop"
useAverageAspectRatio: true,
shape: "backdrop",
showTitle: false,
overlayText: false,
context: 'tv'
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);