restored weather settings

This commit is contained in:
Luke Pulverenti 2013-06-24 10:06:25 -04:00
parent 85f129c738
commit 96901cdc32
2 changed files with 19 additions and 1 deletions

View file

@ -8,9 +8,11 @@
ApiClient.getServerConfiguration().done(function (config) {
$('#txtWeatherLocation', page).val(config.WeatherLocation);
$('#txtMinResumePct', page).val(config.MinResumePct);
$('#txtMaxResumePct', page).val(config.MaxResumePct);
$('#txtMinResumeDuration', page).val(config.MinResumeDurationSeconds);
$('#selectWeatherUnit', page).val(config.WeatherUnit).selectmenu("refresh");
$('input:first', page).focus();
@ -29,6 +31,8 @@
ApiClient.getServerConfiguration().done(function (config) {
config.WeatherLocation = $('#txtWeatherLocation', form).val();
config.WeatherUnit = $('#selectWeatherUnit', form).val();
config.MinResumePct = $('#txtMinResumePct', form).val();
config.MaxResumePct = $('#txtMaxResumePct', form).val();
config.MinResumeDurationSeconds = $('#txtMinResumeDuration', form).val();
@ -43,4 +47,4 @@
window.ClientSettingsPage = new clientSettingsPage();
})($, document, window);
})($, document, window);