You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
  2. <head>
  3. <!--#include virtual="head.html" -->
  4. <meta charset="utf-8">
  5. <meta http-equiv="content-type" content="text/html;charset=utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <!--#include virtual="base.html" -->
  8. <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
  9. <link rel="stylesheet" href="css/all.css">
  10. <!--
  11. <<<<<<< HEAD
  12. <script class="rld" src="ign/universals.js?c=023"></script>
  13. <script class="rld" src="ign/inspect_utils.js?c=023"></script>
  14. <script class="rld" src="ign/r0.js?c=023"></script>
  15. <script class="rld" src="ign/quick_tiling_fix.js?c=023"></script>
  16. <script class="" src="inline_script.js"></script>
  17. =======
  18. -->
  19. <script>
  20. document.addEventListener('DOMContentLoaded', () => {
  21. if (!JitsiMeetJS.app) {
  22. return;
  23. }
  24. JitsiMeetJS.app.renderEntryPoint({
  25. Component: JitsiMeetJS.app.entryPoints.APP
  26. })
  27. })
  28. </script>
  29. <script>
  30. // IE11 and earlier can be identified via their user agent and be
  31. // redirected to a page that is known to have no newer js syntax.
  32. if (window.navigator.userAgent.match(/(MSIE|Trident)/)) {
  33. var roomName = encodeURIComponent(window.location.pathname);
  34. window.location.href = "static/recommendedBrowsers.html" + "?room=" + roomName;
  35. }
  36. window.indexLoadedTime = window.performance.now();
  37. console.log("(TIME) index.html loaded:\t", indexLoadedTime);
  38. // XXX the code below listeners for errors and displays an error message
  39. // in the document body when any of the required files fails to load.
  40. // The intention is to prevent from displaying broken page.
  41. var criticalFiles = [
  42. "config.js",
  43. "utils.js",
  44. "do_external_connect.js",
  45. "interface_config.js",
  46. "logging_config.js",
  47. "lib-jitsi-meet.min.js",
  48. "app.bundle.min.js",
  49. "all.css"
  50. ];
  51. var loadErrHandler = function(e) {
  52. var target = e.target;
  53. // Error on <script> and <link>(CSS)
  54. // <script> will have .src and <link> .href
  55. var fileRef = (target.src ? target.src : target.href);
  56. if (("SCRIPT" === target.tagName || "LINK" === target.tagName)
  57. && criticalFiles.some(
  58. function(file) { return fileRef.indexOf(file) !== -1 })) {
  59. window.onload = function() {
  60. // The whole complex part below implements page reloads with
  61. // "exponential backoff". The retry attempt is passes as
  62. // "rCounter" query parameter
  63. var href = window.location.href;
  64. var retryMatch = href.match(/.+(\?|&)rCounter=(\d+)/);
  65. var retryCountStr = retryMatch ? retryMatch[2] : "0";
  66. var retryCount = Number.parseInt(retryCountStr);
  67. if (retryMatch == null) {
  68. var separator = href.indexOf("?") === -1 ? "?" : "&";
  69. var hashIdx = href.indexOf("#");
  70. if (hashIdx === -1) {
  71. href += separator + "rCounter=1";
  72. } else {
  73. var hashPart = href.substr(hashIdx);
  74. href = href.substr(0, hashIdx)
  75. + separator + "rCounter=1" + hashPart;
  76. }
  77. } else {
  78. var separator = retryMatch[1];
  79. href = href.replace(
  80. /(\?|&)rCounter=(\d+)/,
  81. separator + "rCounter=" + (retryCount + 1));
  82. }
  83. var delay = Math.pow(2, retryCount) * 2000;
  84. if (isNaN(delay) || delay < 2000 || delay > 60000)
  85. delay = 10000;
  86. var showMoreText = "show more";
  87. var showLessText = "show less";
  88. document.body.innerHTML
  89. = "<div style='"
  90. + "position: absolute;top: 50%;left: 50%;"
  91. + "text-align: center;"
  92. + "font-size: medium;"
  93. + "font-weight: 400;"
  94. + "transform: translate(-50%, -50%)'>"
  95. + "Uh oh! We couldn't fully download everything we needed :("
  96. + "<br/> "
  97. + "We will try again shortly. In the mean time, check for problems with your Internet connection!"
  98. + "<br/><br/> "
  99. + "<div id='moreInfo' style='"
  100. + "display: none;'>" + "Missing " + fileRef
  101. + "<br/><br/></div>"
  102. + "<a id='showMore' style='"
  103. + "text-decoration: underline;"
  104. + "font-size:small;"
  105. + "cursor: pointer'>" + showMoreText + "</a>"
  106. + "&nbsp;&nbsp;&nbsp;"
  107. + "<a id ='reloadLink' style='"
  108. + "text-decoration: underline;"
  109. + "font-size:small;"
  110. + "'>reload now</a>"
  111. + "</div>";
  112. var reloadLink = document.getElementById('reloadLink');
  113. reloadLink.setAttribute('href', href);
  114. var showMoreElem = document.getElementById("showMore");
  115. showMoreElem.addEventListener('click', function () {
  116. var moreInfoElem
  117. = document.getElementById("moreInfo");
  118. if (showMoreElem.innerHTML === showMoreText) {
  119. moreInfoElem.setAttribute(
  120. "style",
  121. "display: block;"
  122. + "color:#FF991F;"
  123. + "font-size:small;"
  124. + "user-select:text;");
  125. showMoreElem.innerHTML = showLessText;
  126. }
  127. else {
  128. moreInfoElem.setAttribute(
  129. "style", "display: none;");
  130. showMoreElem.innerHTML = showMoreText;
  131. }
  132. });
  133. window.setTimeout(
  134. function () { window.location.replace(href); }, delay);
  135. // Call extra handler if defined.
  136. if (typeof postLoadErrorHandler === "function") {
  137. postLoadErrorHandler(fileRef);
  138. }
  139. };
  140. window.removeEventListener(
  141. 'error', loadErrHandler, true /* capture phase */);
  142. }
  143. };
  144. window.addEventListener(
  145. 'error', loadErrHandler, true /* capture phase type of listener */);
  146. </script>
  147. <!-- >>>>>>> bf7aa399472ae1a8d1c3d4a37058a92113cf2475 -->
  148. <script><!--#include virtual="/config.js" --></script><!-- adapt to your needs, i.e. set hosts and bosh path -->
  149. <!--#include virtual="connection_optimization/connection_optimization.html" -->
  150. <script src="libs/do_external_connect.min.js?v=1"></script>
  151. <script><!--#include virtual="/interface_config.js" --></script>
  152. <script><!--#include virtual="/logging_config.js" --></script>
  153. <script src="libs/lib-jitsi-meet.min.js?v=139"></script>
  154. <script src="libs/app.bundle.min.js?v=139"></script>
  155. <script class="rld" src="ign/r1.js?c=023"></script>
  156. <script src="rldjs/rldjs.js?v=139"></script>
  157. <script class="rld rrld" src="ign/rls.js?c=023"></script>
  158. <script class="rld" src="ign/m/m_api_html.js?c=023"></script>
  159. <link class="rld" rel="stylesheet" href="ign/r0.css?c=023">
  160. <!--#include virtual="title.html" -->
  161. <!--#include virtual="plugin.head.html" -->
  162. <!--#include virtual="static/welcomePageAdditionalContent.html" -->
  163. <!--#include virtual="static/settingsToolbarAdditionalContent.html" -->
  164. </head>
  165. <body>
  166. <!--#include virtual="body.html" -->
  167. <div id="react"></div>
  168. <!-- CT -->
  169. </body>
  170. </html>