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

fixed page title on collection screens

This commit is contained in:
Luke Pulverenti 2013-04-26 09:50:21 -04:00
parent e6da08f559
commit cba380b0e5
4 changed files with 20 additions and 81 deletions

View file

@ -17,15 +17,15 @@
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#recentlyAddedItems', page).html(LibraryBrowser.getGamePosterViewHtml({
items: result.Items,
useAverageAspectRatio: true,
showNewIndicator: false
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: true,
showNewIndicator: false
}));
});
var options = {
options = {
SortBy: "DatePlayed",
SortOrder: "Descending",
@ -38,10 +38,9 @@
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#resumableItems', page).html(LibraryBrowser.getGamePosterViewHtml({
items: result.Items,
useAverageAspectRatio: true,
showNewIndicator: false
$('#resumableItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: true
}));
});