Currently all.css is loaded after app.js. This means there may not be a guarantee that the css is loaded before the js, which is bad because the js does dom querying for sizes on elements, but some element sizes will be affected by js. So instead load css upfront and let the browser block as needed or at least give the css a head start in racing javascript to load.
22 lines
742 B
HTML
22 lines
742 B
HTML
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<base href="../" />
|
|
|
|
<link rel="stylesheet" href="css/all.css">
|
|
|
|
<!--#include virtual="/title.html" -->
|
|
<script><!--#include virtual="/interface_config.js" --></script>
|
|
<script>
|
|
window.config = {};
|
|
</script>
|
|
<script src="libs/lib-jitsi-meet.min.js?v=139"></script>
|
|
<script src="libs/device_selection_popup_bundle.min.js?v=1"></script>
|
|
</head>
|
|
<body>
|
|
<div id="react"></div>
|
|
</body>
|
|
</html>
|