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

improved tile styles

This commit is contained in:
Luke Pulverenti 2013-04-25 20:52:55 -04:00
parent 322cc9ebe9
commit 6510868c48
9 changed files with 307 additions and 130 deletions

View file

@ -17,10 +17,13 @@
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#recentlyAddedItems', page).html(LibraryBrowser.getEpisodePosterViewHtml({
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: true,
showNewIndicator: false
showNewIndicator: false,
shape: "backdrop",
showTitle: true,
showParentTitle: true
}));
});
@ -45,9 +48,12 @@
$('#resumableSection', page).hide();
}
$('#resumableItems', page).html(LibraryBrowser.getEpisodePosterViewHtml({
$('#resumableItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: true
useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true
}));
});