Bläddra i källkod

Pass room name to IE page

efficient_tiling
Horatiu Muresan 5 år sedan
förälder
incheckning
fb8ef366c6
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2
    1
      index.html

+ 2
- 1
index.html Visa fil

@@ -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();

Laddar…
Avbryt
Spara