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

reduce image indicator sizes

This commit is contained in:
Luke Pulverenti 2014-01-01 22:53:27 -05:00
parent 7743b36bc9
commit bcb4b9da33
11 changed files with 46 additions and 28 deletions

View file

@ -23,7 +23,7 @@
updateFilterControls();
html += LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "square",
showTitle: true,
@ -77,6 +77,8 @@
}).on('pagebeforeshow', "#liveTvRecordingListPage", function () {
var page = this;
var limit = LibraryBrowser.getDefaultPageSize();
// If the default page size has changed, the start index will have to be reset
@ -92,7 +94,17 @@
query.GroupId = groupId;
}
reloadItems(this);
reloadItems(page);
if (query.GroupId) {
ApiClient.getLiveTvRecordingGroup(query.GroupId).done(function (group) {
$('.listName', page).show().html(group.Name);
});
} else {
$('.listName', page).hide();
}
}).on('pageshow', "#liveTvRecordingListPage", function () {