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

progress bars on resumable items

This commit is contained in:
Luke Pulverenti 2013-05-03 22:33:44 -04:00
parent 75ff5c8f43
commit fd54e02387
6 changed files with 117 additions and 25 deletions

View file

@ -9,9 +9,9 @@
SortBy: "DateCreated",
SortOrder: "Descending",
IncludeItemTypes: "Episode",
Limit: 6,
Limit: 8,
Recursive: true,
Fields: "PrimaryImageAspectRatio,SeriesInfo",
Fields: "PrimaryImageAspectRatio,SeriesInfo,UserData",
Filters: "IsUnplayed"
};
@ -34,9 +34,9 @@
SortOrder: "Descending",
IncludeItemTypes: "Episode",
Filters: "IsResumable",
Limit: 6,
Limit: 8,
Recursive: true,
Fields: "PrimaryImageAspectRatio,SeriesInfo,DateCreated"
Fields: "PrimaryImageAspectRatio,SeriesInfo,UserData",
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
@ -52,7 +52,8 @@
useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true
showParentTitle: true,
showProgressBar: true
}));
});