1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-20 09:13:25 +01:00

Move script tags to top, run after DOM Ready.

This commit is contained in:
Markus Birth 2018-01-06 21:33:54 +01:00
parent 3e86408b90
commit 61706d8651
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
2 changed files with 26 additions and 24 deletions

View File

@ -1,3 +1,5 @@
document.addEventListener 'DOMContentLoaded', (event) ->
window.mdc.autoInit() window.mdc.autoInit()
window.tabBar = new mdc.tabs.MDCTabBar document.querySelector '#tab-bar' window.tabBar = new mdc.tabs.MDCTabBar document.querySelector '#tab-bar'

View File

@ -5,6 +5,8 @@
<link rel="stylesheet" href="node_modules/material-components-web/dist/material-components-web.css"/> <link rel="stylesheet" href="node_modules/material-components-web/dist/material-components-web.css"/>
<link rel="stylesheet" href="assets/material-icons.css"/> <link rel="stylesheet" href="assets/material-icons.css"/>
<link rel="stylesheet" href="assets/style.css"/> <link rel="stylesheet" href="assets/style.css"/>
<script type="text/javascript" src="node_modules/material-components-web/dist/material-components-web.js"></script>
<script type="text/javascript" src="assets/main.js"></script>
</head> </head>
<body class="mdc-typography"> <body class="mdc-typography">
<?php <?php
@ -90,7 +92,5 @@ foreach ($allVars as $family => $models) {
} }
?> ?>
</main> </main>
<script type="text/javascript" src="node_modules/material-components-web/dist/material-components-web.js"></script>
<script type="text/javascript" src="assets/main.js"></script>
</body> </body>
</html> </html>