mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
web client touchups
This commit is contained in:
parent
bcb4b9da33
commit
1bea110fe6
42 changed files with 190 additions and 239 deletions
|
@ -148,9 +148,11 @@
|
|||
reloadList(page);
|
||||
});
|
||||
|
||||
$('#selectTargetSystem', page).on('change', function () {
|
||||
$('.radioPackageTypes', page).on('change', function () {
|
||||
|
||||
query.TargetSystems = this.value;
|
||||
var val = $('.radioPackageTypes:checked', page).val();
|
||||
|
||||
query.TargetSystems = val;
|
||||
reloadList(page);
|
||||
});
|
||||
|
||||
|
@ -158,7 +160,11 @@
|
|||
|
||||
var page = this;
|
||||
|
||||
$('#selectTargetSystem', page).val(query.TargetSystems).selectmenu('refresh');
|
||||
$(".radioPackageTypes", page).each(function() {
|
||||
|
||||
this.checked = this.value == query.TargetSystems;
|
||||
|
||||
}).checkboxradio('refresh');
|
||||
|
||||
// Reset form values using the last used query
|
||||
$('.chkPremiumFilter', page).each(function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue