mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
(function ($, document, window) {
|
|
|
|
function loadPage(page, config) {
|
|
|
|
$('#selectChannelResolution', page).val(config.PreferredStreamingWidth || '');
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function onSubmit() {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var form = this;
|
|
|
|
ApiClient.getNamedConfiguration("channels").done(function (config) {
|
|
|
|
// This should be null if empty
|
|
config.PreferredStreamingWidth = $('#selectChannelResolution', form).val() || null;
|
|
|
|
ApiClient.updateNamedConfiguration("channels", config).done(Dashboard.processServerConfigurationUpdateResult);
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
}
|
|
|
|
$(document).on('pageinit', "#channelSettingsPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('.channelSettingsForm', page).off('submit', onSubmit).on('submit', onSubmit);
|
|
|
|
}).on('pageshow', "#channelSettingsPage", function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var page = this;
|
|
|
|
ApiClient.getNamedConfiguration("channels").done(function (config) {
|
|
|
|
loadPage(page, config);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery, document, window);
|