mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
8d55154164
* update schemas * update schemas * update schemas * schema update * update translation * upd
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
|
|
var conf_editor = null;
|
|
|
|
$(document).ready(function() {
|
|
performTranslation();
|
|
requestLoggingStart();
|
|
|
|
schema = parsedConfSchemaJSON.properties;
|
|
conf_editor = createJsonEditor('editor_container', {
|
|
logger : schema.logger
|
|
}, true);
|
|
|
|
$('#editor_container h3').remove();
|
|
|
|
$('#btn_submit').off().on('click',function() {
|
|
requestWriteConfig(conf_editor.getValue());
|
|
});
|
|
|
|
$('#btn_autoscroll').off().on('click',function() {
|
|
toggleClass('#btn_autoscroll', "btn-success", "btn-danger");
|
|
});
|
|
|
|
|
|
if (!loggingHandlerInstalled)
|
|
{
|
|
loggingHandlerInstalled = true;
|
|
$(hyperion).on("cmd-logging-update",function(event){
|
|
if ($("#logmessages").length == 0)
|
|
{
|
|
requestLoggingStop();
|
|
}
|
|
else
|
|
{
|
|
messages = (event.response.result.messages);
|
|
for(var idx=0; idx<messages.length; idx++)
|
|
{
|
|
msg = messages[idx];
|
|
$("#logmessages").html($("#logmessages").html()+"\n <code>"+msg+"</code>");
|
|
|
|
}
|
|
if($("#btn_autoscroll").hasClass('btn-success')){
|
|
$('#logmessages').stop().animate({
|
|
scrollTop: $('#logmessages')[0].scrollHeight
|
|
}, 800);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
});
|