48 lines
1.7 KiB
JavaScript
48 lines
1.7 KiB
JavaScript
define(["jQuery", "loading", "libraryMenu"], function ($, loading, libraryMenu) {
|
|
"use strict";
|
|
|
|
function loadPage(page, config) {
|
|
$("#txtMinResumePct", page).val(config.MinResumePct);
|
|
$("#txtMaxResumePct", page).val(config.MaxResumePct);
|
|
$("#txtMinResumeDuration", page).val(config.MinResumeDurationSeconds);
|
|
loading.hide();
|
|
}
|
|
|
|
function onSubmit() {
|
|
loading.show();
|
|
var form = this;
|
|
ApiClient.getServerConfiguration().then(function (config) {
|
|
config.MinResumePct = $('#txtMinResumePct', form).val();
|
|
config.MaxResumePct = $('#txtMaxResumePct', form).val();
|
|
config.MinResumeDurationSeconds = $('#txtMinResumeDuration', form).val();
|
|
|
|
ApiClient.updateServerConfiguration(config).then(Dashboard.processServerConfigurationUpdateResult);
|
|
});
|
|
|
|
return false;
|
|
}
|
|
|
|
function getTabs() {
|
|
return [{
|
|
href: "encodingsettings.html",
|
|
name: Globalize.translate("Transcoding")
|
|
}, {
|
|
href: "playbackconfiguration.html",
|
|
name: Globalize.translate("TabResumeSettings")
|
|
}, {
|
|
href: "streamingsettings.html",
|
|
name: Globalize.translate("TabStreaming")
|
|
}];
|
|
}
|
|
|
|
$(document).on("pageinit", "#playbackConfigurationPage", function () {
|
|
$(".playbackConfigurationForm").off("submit", onSubmit).on("submit", onSubmit);
|
|
}).on("pageshow", "#playbackConfigurationPage", function () {
|
|
loading.show();
|
|
libraryMenu.setTabs("playback", 1, getTabs);
|
|
var page = this;
|
|
ApiClient.getServerConfiguration().then(function (config) {
|
|
loadPage(page, config);
|
|
});
|
|
});
|
|
});
|