diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-02 11:03:33 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-02 11:39:01 +0100 |
commit | 79e8e4599ef8af2ee70250a206b3d956abcfca3d (patch) | |
tree | 908400bbc7db2b6f0866dedac8b9a2074782162d /view/js/mod_settings.js | |
parent | ba5cfd8b2540bbad441cd54b0e9d746f04c13864 (diff) | |
download | volse-hubzilla-79e8e4599ef8af2ee70250a206b3d956abcfca3d.tar.gz volse-hubzilla-79e8e4599ef8af2ee70250a206b3d956abcfca3d.tar.bz2 volse-hubzilla-79e8e4599ef8af2ee70250a206b3d956abcfca3d.zip |
reset schema value after we empty and repopulate it. first half of fix for #624
Diffstat (limited to 'view/js/mod_settings.js')
-rw-r--r-- | view/js/mod_settings.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 5c729fa48..cf77db9bb 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -37,12 +37,14 @@ function setTheme(elm) { function previewTheme(elm) { theme = $(elm).val(); + var schema = $('#id_schema').val(); $.getJSON('theme_info/' + theme,function(data) { $('#theme-preview').html('<div id="theme-desc">' + data.desc + '</div><div id="theme-version">' + data.version + '</div><div id="theme-credits">' + data.credits + '</div><a href="' + data.img + '"><img src="' + data.img + '" style="max-width:100%; max-height:300px" alt="' + theme + '"></a>'); $('#id_schema').empty(); $(data.schemas).each(function(index,item) { $('<option/>',{value:item['key'],text:item['val']}).appendTo('#id_schema'); }); + $('#id_schema').val(schema ? schema : data.schemas[0]); $('#custom-settings-content .section-content-tools-wrapper').html(data.config); }); } |