Ver código fonte

Pass room name to IE page

master
Horatiu Muresan 5 anos atrás
pai
commit
fb8ef366c6
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2
    1
      index.html

+ 2
- 1
index.html Ver arquivo

13
         // IE11 and earlier can be identified via their user agent and be
13
         // IE11 and earlier can be identified via their user agent and be
14
         // redirected to a page that is known to have no newer js syntax.
14
         // redirected to a page that is known to have no newer js syntax.
15
         if (window.navigator.userAgent.match(/(MSIE|Trident)/)) {
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
         window.indexLoadedTime = window.performance.now();
20
         window.indexLoadedTime = window.performance.now();

Carregando…
Cancelar
Salvar