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.
This commit is contained in:
damencho 2016-08-01 17:11:16 -05:00
parent ff68caaa16
commit 6cb89891ce
2 changed files with 3 additions and 3 deletions

View File

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

View File

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