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

adjust tile styles

This commit is contained in:
Luke Pulverenti 2013-12-23 10:26:36 -05:00
parent 89a83ba77e
commit b9d90edfb2
9 changed files with 80 additions and 62 deletions

View file

@ -7,7 +7,7 @@
SortOrder: "Ascending",
IncludeItemTypes: "BoxSet",
Recursive: true,
Fields: "DateCreated",
Fields: "DateCreated,PrimaryImageAspectRatio",
StartIndex: 0
};
@ -29,9 +29,11 @@
var checkSortOption = $('.radioSortBy:checked', page);
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
html += LibraryBrowser.getPosterDetailViewHtml({
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
context: "movies"
shape: "portrait",
context: 'movies',
useAverageAspectRatio: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);