diff --git a/common.js b/common.js index aaac50f..d23f6dd 100644 --- a/common.js +++ b/common.js @@ -271,7 +271,7 @@ function uninstall(additional) { jQuery("div.deployment").each(function(index) { $(this).html(''); }); - data = '
'; + data = ''; jQuery("#"+additional).html(data); jQuery("#popupText").html(data); // manage2 } @@ -480,8 +480,17 @@ function get_containers() { }); } +function get_version() { + var url = 'scan.php?op=version'; + jQuery.get(url, function(data) { + console.log('version: '+data); + jQuery('#logo').attr('title',data); + }); +} + jQuery(document).ready(function(){ + get_version(); get_repositories(); get_deployments(); get_system(); diff --git a/manage.html b/manage.html index e56cae6..2d20636 100644 --- a/manage.html +++ b/manage.html @@ -11,7 +11,7 @@