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

added detail page indicator for missing

This commit is contained in:
Luke Pulverenti 2013-10-17 16:59:46 -04:00
parent 55ff795d36
commit b1901ee91e
26 changed files with 122 additions and 91 deletions

View file

@ -10,8 +10,6 @@
Fields: "DateCreated",
StartIndex: 0
};
LibraryBrowser.loadSavedQueryValues('boxsets', query);
function reloadItems(page) {
@ -148,6 +146,8 @@
query.StartIndex = 0;
}
LibraryBrowser.loadSavedQueryValues('boxsets', query);
reloadItems(this);
}).on('pageshow', "#boxsetsPage", function () {
@ -155,13 +155,13 @@
// Reset form values using the last used query
$('.radioSortBy', this).each(function () {
this.checked = query.SortBy == this.getAttribute('data-sortby');
this.checked = (query.SortBy || '').toLowerCase() == this.getAttribute('data-sortby').toLowerCase();
}).checkboxradio('refresh');
$('.radioSortOrder', this).each(function () {
this.checked = query.SortOrder == this.getAttribute('data-sortorder');
this.checked = (query.SortOrder || '').toLowerCase() == this.getAttribute('data-sortorder').toLowerCase();
}).checkboxradio('refresh');