diff --git a/common.js b/common.js index b28a758..8eeef64 100644 --- a/common.js +++ b/common.js @@ -10,6 +10,7 @@ function check_deployments() { apps.length = 0; // reset apps.push(...JSON.parse(data)); // push each element console.log(apps); + document.getElementById('installAppsBtn').click(); // manage html_data = ''; @@ -19,6 +20,7 @@ function check_deployments() { service_name = data[k].name; orig_service_name = data[k].orig_name; version = data[k].version; + subtitle = data[k].subtitle; installed = data[k].installed; if (installed=='true') { html_data += '
'+orig_service_name+' - '+version+' - INSTALLED
'; @@ -29,7 +31,6 @@ function check_deployments() { html_data += '
'; } jQuery("#deployments").html(html_data); - document.getElementById('installAppsBtn').click(); } }); @@ -433,8 +434,8 @@ function get_proxy_html() { `; diff --git a/manage.html b/manage.html index 52d8703..2164a92 100644 --- a/manage.html +++ b/manage.html @@ -684,6 +684,7 @@
+ Loading applications...