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

update settings pages

This commit is contained in:
Luke Pulverenti 2016-01-04 13:58:06 -05:00
parent 6b1d622a8e
commit 4212cde734
3 changed files with 3 additions and 40 deletions

View file

@ -38,15 +38,9 @@
update('chromecastBitrate', val);
}
return parseInt(appStorage.getItem('chromecastBitrate') || '') || 3000000;
},
enableChromecastAc3: function (val) {
val = appStorage.getItem('chromecastBitrate');
if (val != null) {
update('enablechromecastac3', val.toString());
}
return appStorage.getItem('enablechromecastac3') == 'true';
return val ? parseInt(val) : null;
},
enableExternalPlayers: function (val) {