mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update m3u tuners
This commit is contained in:
parent
8929c6cbc9
commit
9599bbbd35
6 changed files with 115 additions and 79 deletions
|
@ -270,9 +270,9 @@
|
|||
|
||||
}).checkboxradio('refresh');
|
||||
|
||||
$('.chk3D', viewPanel).checked(query.Is3D == true).checkboxradio('refresh');
|
||||
$('.chkHD', viewPanel).checked(query.IsHD == true).checkboxradio('refresh');
|
||||
$('.chkSD', viewPanel).checked(query.IsHD == false).checkboxradio('refresh');
|
||||
$('.chk3DFilter', viewPanel).checked(query.Is3D == true).checkboxradio('refresh');
|
||||
$('.chkHDFilter', viewPanel).checked(query.IsHD == true).checkboxradio('refresh');
|
||||
$('.chkSDFilter', viewPanel).checked(query.IsHD == false).checkboxradio('refresh');
|
||||
|
||||
$('.alphabetPicker', tabContent).alphaValue(query.NameStartsWithOrGreater);
|
||||
}
|
||||
|
@ -335,7 +335,7 @@
|
|||
reloadItems(tabContent, viewPanel);
|
||||
});
|
||||
|
||||
$('.chk3D', viewPanel).on('change', function () {
|
||||
$('.chk3DFilter', viewPanel).on('change', function () {
|
||||
|
||||
var query = getQuery();
|
||||
query.StartIndex = 0;
|
||||
|
@ -344,16 +344,15 @@
|
|||
reloadItems(tabContent, viewPanel);
|
||||
});
|
||||
|
||||
$('.chkHD', viewPanel).on('change', function () {
|
||||
$('.chkHDFilter', viewPanel).on('change', function () {
|
||||
|
||||
var query = getQuery();
|
||||
query.StartIndex = 0;
|
||||
query.IsHD = this.checked ? true : null;
|
||||
|
||||
reloadItems(tabContent, viewPanel);
|
||||
});
|
||||
|
||||
$('.chkSD', viewPanel).on('change', function () {
|
||||
$('.chkSDFilter', viewPanel).on('change', function () {
|
||||
|
||||
var query = getQuery();
|
||||
query.StartIndex = 0;
|
||||
|
|
|
@ -1887,7 +1887,7 @@ var AppInfo = {};
|
|||
var apiClient = window.ApiClient;
|
||||
|
||||
// Close the connection gracefully when possible
|
||||
if (apiClient && apiClient.isWebSocketOpen()) {
|
||||
if (apiCblient && apiClient.isWebSocketOpen()) {
|
||||
|
||||
var localActivePlayers = MediaController.getPlayers().filter(function (p) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue