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

tv shows section - changed dispay

This commit is contained in:
Techywarrior 2013-04-02 15:53:31 -07:00
parent 363f71b573
commit e2cc657ac7
2 changed files with 81 additions and 4 deletions

View file

@ -11,12 +11,12 @@
IncludeItemTypes: "Episode",
Limit: 6,
Recursive: true,
Fields: "PrimaryImageAspectRatio"
Fields: "PrimaryImageAspectRatio,SeriesInfo"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
$('#recentlyAddedItems', page).html(LibraryBrowser.getEpisodePosterViewHtml({
items: result.Items,
useAverageAspectRatio: true
}));
@ -32,7 +32,7 @@
Filters: "IsResumable",
Limit: 6,
Recursive: true,
Fields: "PrimaryImageAspectRatio"
Fields: "PrimaryImageAspectRatio,SeriesInfo"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
@ -43,7 +43,7 @@
$('#resumableSection', page).hide();
}
$('#resumableItems', page).html(LibraryBrowser.getPosterViewHtml({
$('#resumableItems', page).html(LibraryBrowser.getEpisodePosterViewHtml({
items: result.Items,
useAverageAspectRatio: true
}));