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