|
@@ -11,12 +11,10 @@
|
11
|
11
|
<meta itemprop="image" content="/images/jitsilogo.png?v=1"/>
|
12
|
12
|
<link rel="stylesheet" href="css/all.css"/>
|
13
|
13
|
<script>console.log("(TIME) index.html loaded:\t", window.performance.now());</script>
|
14
|
|
- <script src="https://api.callstats.io/static/callstats.min.js"></script>
|
15
|
14
|
<script src="config.js?v=15"></script><!-- adapt to your needs, i.e. set hosts and bosh path -->
|
16
|
15
|
<script src="interface_config.js?v=6"></script>
|
17
|
16
|
<script src="lib-jitsi-meet.js?v=139"></script>
|
18
|
17
|
<script src="libs/app.bundle.min.js?v=139"></script>
|
19
|
|
- <script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
20
|
18
|
<!--
|
21
|
19
|
Link used for inline installation of chrome desktop streaming extension,
|
22
|
20
|
is updated automatically from the code with the value defined in config.js -->
|
|
@@ -225,5 +223,20 @@
|
225
|
223
|
<a id="feedbackButton" data-container="body" data-toggle="popover" data-placement="right" data-i18n="[data-content]feedback"><i class="fa fa-heart"></i></a>
|
226
|
224
|
</div>
|
227
|
225
|
</div>
|
|
226
|
+ <script type="text/javascript">
|
|
227
|
+ if (config.enableThirdPartyRequests === true)
|
|
228
|
+ {
|
|
229
|
+ [
|
|
230
|
+ 'https://api.callstats.io/static/callstats.min.js',
|
|
231
|
+ 'analytics.js?v=1'
|
|
232
|
+ ].forEach(function(extSrc)
|
|
233
|
+ {
|
|
234
|
+ var extScript = document.createElement('script');
|
|
235
|
+ extScript.src = extSrc;
|
|
236
|
+ extScript.async = false;
|
|
237
|
+ document.head.appendChild(extScript);
|
|
238
|
+ });
|
|
239
|
+ }
|
|
240
|
+ </script>
|
228
|
241
|
</body>
|
229
|
242
|
</html>
|