2016-12-08 23:39:41 +01:00
|
|
|
|
|
|
|
var conf_editor = null;
|
|
|
|
$(hyperion).one("cmd-config-getschema", function(event) {
|
|
|
|
schema = parsedConfSchemaJSON.properties;
|
|
|
|
conf_editor = createJsonEditor('editor_container', {
|
|
|
|
webConfig : schema.webConfig
|
2017-01-04 10:55:10 +01:00
|
|
|
}, true, true);
|
2016-12-08 23:39:41 +01:00
|
|
|
|
|
|
|
$('#btn_submit').off().on('click',function() {
|
|
|
|
requestWriteConfig(conf_editor.getValue());
|
|
|
|
});
|
2017-01-04 10:55:10 +01:00
|
|
|
|
|
|
|
if(showOptHelp)
|
|
|
|
$('#opt_expl_webconfig').html(createHelpTable(schema.webConfig.properties, '<i class="fa fa-info-circle fa-fw"></i>'+$.i18n("edt_conf_webc_heading_title")+' '+$.i18n("conf_helptable_expl")));
|
2016-12-08 23:39:41 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(document).ready( function() {
|
|
|
|
performTranslation();
|
|
|
|
requestServerConfigSchema();
|
|
|
|
});
|
|
|
|
|