diff options
author | Devaev Maxim <[email protected]> | 2018-12-19 01:07:00 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-12-19 01:07:00 +0300 |
commit | e887159a188a6b92ebd8f8e040b24118e6e7fc22 (patch) | |
tree | da22eb7b0b4c6e1bfcf71146bd38a167adebca9e /web/share/js/index/main.js | |
parent | 28f2875e7e5c64c5442d36aa7fb80cc0f2a5faea (diff) |
removed kvm from extras
Diffstat (limited to 'web/share/js/index/main.js')
-rw-r--r-- | web/share/js/index/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 369706ac..edc52073 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -39,6 +39,9 @@ function __loadKvmdInfo() { }); $("apps-box").innerHTML = "<ul id=\"apps\"></ul>"; + + $("apps").innerHTML += __makeApp(null, "kvm", "share/svg/kvm.svg", "KVM"); + apps.forEach(function(app) { $("apps").innerHTML += __makeApp(null, app.path, app.icon, app.name); }); |