mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
updated 3d filters
This commit is contained in:
parent
3ba31e9003
commit
9a6be151e3
3 changed files with 6 additions and 6 deletions
|
@ -152,7 +152,7 @@
|
|||
$('#chk3D', this).on('change', function () {
|
||||
|
||||
query.StartIndex = 0;
|
||||
query.VideoFormats = this.checked ? this.getAttribute('data-filter') : null;
|
||||
query.Is3D = this.checked ? this.getAttribute('data-filter') : null;
|
||||
|
||||
reloadItems(page);
|
||||
});
|
||||
|
@ -250,7 +250,7 @@
|
|||
|
||||
$('#selectView', this).val(view).selectmenu('refresh');
|
||||
|
||||
$('#chk3D', this).checked(query.VideoFormats == "Digital3D,Sbs3D").checkboxradio('refresh');
|
||||
$('#chk3D', this).checked(query.Is3D == true).checkboxradio('refresh');
|
||||
|
||||
$('#chkSubtitle', this).checked(query.HasSubtitles == true).checkboxradio('refresh');
|
||||
$('#chkTrailer', this).checked(query.HasTrailer == true).checkboxradio('refresh');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue