New JSON Editor

This commit is contained in:
b1rdhous3 2016-08-31 00:22:17 +02:00
parent dae32f72bf
commit 019e3f5d0c
3 changed files with 10 additions and 10 deletions

View File

@ -90,7 +90,7 @@
enableFormTranslation("generalConfForm", "generalConfForm"); enableFormTranslation("generalConfForm", "editor_holder");
$("[type='checkbox']").bootstrapSwitch(); $("[type='checkbox']").bootstrapSwitch();

View File

@ -12,7 +12,7 @@
* @param {String} formID * @param {String} formID
*/ */
function enableFormTranslation(tokenPrefix, formID) { function enableFormTranslation(tokenPrefix, formID) {
var $inputs = $("#" + formID + " :input"); var $inputs = $("#" + formID + " label");
$inputs.each(function() { $inputs.each(function() {
console.log("InputID: " + $(this).attr('id')); console.log("InputID: " + $(this).attr('id'));
@ -34,13 +34,13 @@ function button_reloaddata(){
hyperionport = $("#json_port").val(); hyperionport = $("#json_port").val();
loaddata(); loaddata();
}; };
function loaddata() { function loaddata() {
webSocket = new WebSocket('ws://'+document.location.hostname+':'+hyperionport); webSocket = new WebSocket('ws://'+document.location.hostname+':'+hyperionport);
webSocket.onerror = function(event) { webSocket.onerror = function(event) {
$('#con_error_modal').modal('show'); $('#con_error_modal').modal('show');
}; };
webSocket.onopen = function(event) { webSocket.onopen = function(event) {
@ -57,12 +57,12 @@ function loaddata() {
// get host // get host
var hostname = parsedServerInfoJSON.info.hostname; var hostname = parsedServerInfoJSON.info.hostname;
$('#dash_systeminfo').html(hostname+':'+hyperionport); $('#dash_systeminfo').html(hostname+':'+hyperionport);
$.get( "https://raw.githubusercontent.com/hyperion-project/hyperion.ng/master/version.json", function( data ) { $.get( "https://raw.githubusercontent.com/hyperion-project/hyperion.ng/master/version.json", function( data ) {
parsedUpdateJSON = JSON.parse(data); parsedUpdateJSON = JSON.parse(data);
latestVersion = parsedUpdateJSON[0].versionnr; latestVersion = parsedUpdateJSON[0].versionnr;
cleanLatestVersion = latestVersion.replace(/\./g, ''); cleanLatestVersion = latestVersion.replace(/\./g, '');
$('#currentversion').html(' V'+currentVersion); $('#currentversion').html(' V'+currentVersion);
$('#latestversion').html(' V'+latestVersion); $('#latestversion').html(' V'+latestVersion);
@ -73,6 +73,6 @@ function loaddata() {
$('#versioninforesult').html('<div lang="en" data-lang-token="dashboard_message_infobox_updatesuccess" style="margin:0px;" class="alert alert-success">You run the latest version of Hyperion.</div>'); $('#versioninforesult').html('<div lang="en" data-lang-token="dashboard_message_infobox_updatesuccess" style="margin:0px;" class="alert alert-success">You run the latest version of Hyperion.</div>');
} }
}); });
}; };
}; };

View File

@ -826,7 +826,7 @@
"port" : "port" :
{ {
"type" : "integer", "type" : "integer",
"description" : "Port", "title" : "Port",
"required" : true "required" : true
} }
}, },