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

@ -21,13 +21,13 @@
// Reset form values using the last used query
$('.radioSortBy', page).each(function () {
this.checked = query.SortBy == this.getAttribute('data-sortby');
this.checked = (query.SortBy || '').toLowerCase() == this.getAttribute('data-sortby').toLowerCase();
}).checkboxradio('refresh');
$('.radioSortOrder', page).each(function () {
$('.radioSortOrder', this).each(function () {
this.checked = query.SortOrder == this.getAttribute('data-sortorder');
this.checked = (query.SortOrder || '').toLowerCase() == this.getAttribute('data-sortorder').toLowerCase();
}).checkboxradio('refresh');
}