summaryrefslogtreecommitdiff
path: root/web/js/kvm/main.js
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2018-11-14 06:08:07 +0300
committerDevaev Maxim <[email protected]>2018-11-14 06:08:07 +0300
commitc5544349d2bc5981ed843a7f71c8326364da4a3e (patch)
tree1e1a75fe7052a073a893b80fab0d8718e407acfb /web/js/kvm/main.js
parentff2ac423b2ad5d49401b76dc3dfb287bcf60ab83 (diff)
refactoring
Diffstat (limited to 'web/js/kvm/main.js')
-rw-r--r--web/js/kvm/main.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/web/js/kvm/main.js b/web/js/kvm/main.js
index 3cb65402..4565ce3c 100644
--- a/web/js/kvm/main.js
+++ b/web/js/kvm/main.js
@@ -1,14 +1,7 @@
var ui;
function main() {
- if (
- !window.navigator
- || window.navigator.userAgent.indexOf("MSIE ") > 0
- || window.navigator.userAgent.indexOf("Trident/") > 0
- || window.navigator.userAgent.indexOf("Edge/") > 0
- ) {
- $("bad-browser-modal").style.visibility = "visible";
- } else {
+ if (check_browser()) {
ui = new Ui();
tools.setOnClick($("show-about-button"), () => ui.showWindow($("about-window")));