-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes
defer
from the main <script>
- Loading branch information
1 parent
beb480c
commit cdc06bc
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,7 +161,7 @@ <h6> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/scatter-gl.min.js"></script> | ||
|
||
<!-- Load main local JS libraries --> | ||
<script type="module" src="js/main.js" defer></script> | ||
<script type="module" src="js/main.js"></script> | ||
|
||
<script src="/reload/reload.js" defer></script> | ||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
<link rel="preconnect" href="https://cdn.jsdelivr.net" /> | ||
<link rel="prefetch" href="dev.html" /> | ||
|
||
<!-- FavIcons --> | ||
<link | ||
rel="apple-touch-icon" | ||
|
@@ -142,15 +142,20 @@ <h6> | |
/> | ||
|
||
<!-- Load global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163501590-1"></script> | ||
<script | ||
async | ||
src="https://www.googletagmanager.com/gtag/js?id=UA-163501590-1" | ||
></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag("js", new Date()); | ||
|
||
gtag('config', 'UA-163501590-1'); | ||
gtag("config", "UA-163501590-1"); | ||
</script> | ||
|
||
<!-- Load tf.js libraries !--> | ||
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-core"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-converter"></script> | ||
|
@@ -169,7 +174,7 @@ <h6> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/scatter-gl.min.js"></script> | ||
|
||
<!-- Load main local JS libraries --> | ||
<script type="module" src="js/main.js" defer></script> | ||
<script type="module" src="js/main.js"></script> | ||
|
||
<script src="/reload/reload.js" defer></script> | ||
</body> | ||
|