Browse Source

Pass room name to IE page

master
Horatiu Muresan 4 years ago
parent
commit
fb8ef366c6
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      index.html

+ 2
- 1
index.html View File

@@ -13,7 +13,8 @@
13 13
         // IE11 and earlier can be identified via their user agent and be
14 14
         // redirected to a page that is known to have no newer js syntax.
15 15
         if (window.navigator.userAgent.match(/(MSIE|Trident)/)) {
16
-            window.location.href = "static/recommendedBrowsers.html";
16
+            var roomName = encodeURIComponent(window.location.pathname);
17
+            window.location.href = "static/recommendedBrowsers.html" + "?room=" + roomName;
17 18
         }
18 19
 
19 20
         window.indexLoadedTime = window.performance.now();

Loading…
Cancel
Save