Browse Source

Moves favicon into the title html.

Moves favicon into the title html with all metadata for easy overriding. Moves the title html inclusion after all the connection optimisations to avoid downloading the icon to interfere those optimisations.
master
damencho 8 years ago
parent
commit
6cb89891ce
2 changed files with 3 additions and 3 deletions
  1. 1
    2
      index.html
  2. 2
    1
      title.html

+ 1
- 2
index.html View File

3
     <meta charset="utf-8" />
3
     <meta charset="utf-8" />
4
     <meta http-equiv="content-type" content="text/html;charset=utf-8">
4
     <meta http-equiv="content-type" content="text/html;charset=utf-8">
5
     <!--#include virtual="base.html" -->
5
     <!--#include virtual="base.html" -->
6
-    <!--#include virtual="title.html" -->
7
     <script>
6
     <script>
8
         window.indexLoadedTime = window.performance.now();
7
         window.indexLoadedTime = window.performance.now();
9
         console.log("(TIME) index.html loaded:\t", indexLoadedTime);
8
         console.log("(TIME) index.html loaded:\t", indexLoadedTime);
15
     <script><!--#include virtual="interface_config.js" --></script>
14
     <script><!--#include virtual="interface_config.js" --></script>
16
     <script src="libs/lib-jitsi-meet.min.js?v=139"></script>
15
     <script src="libs/lib-jitsi-meet.min.js?v=139"></script>
17
     <script src="libs/app.bundle.min.js?v=139"></script>
16
     <script src="libs/app.bundle.min.js?v=139"></script>
18
-    <link rel="icon" type="image/png" href="/images/favicon.ico?v=1"/>
17
+    <!--#include virtual="title.html" -->
19
     <link rel="stylesheet" href="css/all.css"/>
18
     <link rel="stylesheet" href="css/all.css"/>
20
     <!--#include virtual="plugin.head.html" -->
19
     <!--#include virtual="plugin.head.html" -->
21
   </head>
20
   </head>

+ 2
- 1
title.html View File

5
 <meta description="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
5
 <meta description="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
6
 <meta itemprop="name" content="Jitsi Meet"/>
6
 <meta itemprop="name" content="Jitsi Meet"/>
7
 <meta itemprop="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
7
 <meta itemprop="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
8
-<meta itemprop="image" content="/images/jitsilogo.png?v=1"/>
8
+<meta itemprop="image" content="/images/jitsilogo.png?v=1"/>
9
+<link rel="icon" type="image/png" href="/images/favicon.ico?v=1"/>

Loading…
Cancel
Save