Skip to content
Snippets Groups Projects
Unverified Commit 5a4b6c2e authored by Conrad Zelck's avatar Conrad Zelck
Browse files

fix: call sync js before sync css in head


This is due to speed. Sync css can block sync js. So call sync js first.

Signed-off-by: default avatarConrad Zelck <git@simpel.cc>
parent e30b9213
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
<?php include dirname($_SERVER['DOCUMENT_ROOT']) . "/simpel.cc/php/head.php"; ?> <?php include dirname($_SERVER['DOCUMENT_ROOT']) . "/simpel.cc/php/head.php"; ?>
<!-- <meta charset="utf-8"> --> <!-- <meta charset="utf-8"> -->
<!-- <title>FreqBuddy</title> --> <!-- <title>FreqBuddy</title> -->
<link rel="stylesheet" href="style.css">
<script src="script.js"></script> <script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head> </head>
<body> <body>
<header> <header>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment