summaryrefslogtreecommitdiff
path: root/web/js/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/js/main.js')
-rw-r--r--web/js/main.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/web/js/main.js b/web/js/main.js
deleted file mode 100644
index d82939c9..00000000
--- a/web/js/main.js
+++ /dev/null
@@ -1,15 +0,0 @@
-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 {
- ui = new Ui();
- new Session(new Hid(), new Atx(), new Msd(), new Streamer());
- }
-}