@@ -19,14 +19,12 @@
diff --git a/dashboard-ui/scripts/advancedconfigurationpage.js b/dashboard-ui/scripts/advancedconfigurationpage.js
index 1990b71431..d55bb89913 100644
--- a/dashboard-ui/scripts/advancedconfigurationpage.js
+++ b/dashboard-ui/scripts/advancedconfigurationpage.js
@@ -24,8 +24,8 @@
$('.lnlAutomaticUpdateLevel', page).html(Globalize.translate('LabelAutomaticUpdateLevelForPlugins'));
}
- $('#chkEnableAutomaticServerUpdates', page).checked(config.EnableAutoUpdate).checkboxradio("refresh");
- $('#chkEnableAutomaticRestart', page).checked(config.EnableAutomaticRestart).checkboxradio("refresh");
+ $('#chkEnableAutomaticServerUpdates', page).checked(config.EnableAutoUpdate);
+ $('#chkEnableAutomaticRestart', page).checked(config.EnableAutomaticRestart);
if (systemInfo.CanSelfRestart) {
$('#fldEnableAutomaticRestart', page).show();
@@ -34,12 +34,12 @@
}
$('#selectAutomaticUpdateLevel', page).val(config.SystemUpdateLevel).trigger('change');
- $('#chkDebugLog', page).checked(config.EnableDebugLevelLogging).checkboxradio("refresh");
+ $('#chkDebugLog', page).checked(config.EnableDebugLevelLogging);
- $('#chkRunAtStartup', page).checked(config.RunAtStartup).checkboxradio("refresh");
+ $('#chkRunAtStartup', page).checked(config.RunAtStartup);
- $('#chkEnableDashboardResponseCache', page).checked(config.EnableDashboardResponseCaching).checkboxradio("refresh");
- $('#chkEnableMinification', page).checked(config.EnableDashboardResourceMinification).checkboxradio("refresh");
+ $('#chkEnableDashboardResponseCache', page).checked(config.EnableDashboardResponseCaching);
+ $('#chkEnableMinification', page).checked(config.EnableDashboardResourceMinification);
$('#txtDashboardSourcePath', page).val(config.DashboardSourcePath).trigger('change');
Dashboard.hideLoadingMsg();
diff --git a/dashboard-ui/scripts/dlnaserversettings.js b/dashboard-ui/scripts/dlnaserversettings.js
index 96b2bf2450..4d8455b208 100644
--- a/dashboard-ui/scripts/dlnaserversettings.js
+++ b/dashboard-ui/scripts/dlnaserversettings.js
@@ -2,11 +2,11 @@
function loadPage(page, config, users) {
- $('#chkEnableServer', page).checked(config.EnableServer).checkboxradio("refresh");
- $('#chkBlastAliveMessages', page).checked(config.BlastAliveMessages).checkboxradio("refresh");
+ $('#chkEnableServer', page).checked(config.EnableServer);
+ $('#chkBlastAliveMessages', page).checked(config.BlastAliveMessages);
$('#txtBlastInterval', page).val(config.BlastAliveMessageIntervalSeconds);
- $('#chkEnableMovieFolders', page).checked(config.EnableMovieFolders).checkboxradio("refresh");
+ $('#chkEnableMovieFolders', page).checked(config.EnableMovieFolders);
var usersHtml = users.map(function (u) {
return '
';
diff --git a/dashboard-ui/supporterkey.html b/dashboard-ui/supporterkey.html
index de879107c5..5062816025 100644
--- a/dashboard-ui/supporterkey.html
+++ b/dashboard-ui/supporterkey.html
@@ -4,7 +4,7 @@
${TitleSupport}
-
+
@@ -36,8 +36,7 @@
${TabSupporterKey}
-
-
+
${LabelSupporterKeyHelp}
@@ -65,8 +64,7 @@