change order of js load
This commit is contained in:
parent
d258b2d569
commit
824e225b9d
1 changed files with 18 additions and 14 deletions
30
index.html
30
index.html
|
|
@ -22,24 +22,12 @@
|
||||||
<meta name="author" content="ReznoR Michael">
|
<meta name="author" content="ReznoR Michael">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
<link rel="icon" href="../favicon.png">
|
<link rel="icon" href="../favicon.png">
|
||||||
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<!-- <script src="loadJson.js"></script> -->
|
|
||||||
<script src="HKCheckCompletion.js"></script>
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136831794-2"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
function gtag(){dataLayer.push(arguments);}
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-136831794-2');
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- To do:
|
<!-- To do:
|
||||||
- Populate all items on page load
|
- Populate all items on page load
|
||||||
|
- Calculate all % in all categories from save data
|
||||||
- Single Pale Ore locations? (required for completion)
|
- Single Pale Ore locations? (required for completion)
|
||||||
- Single Keys/Pass locations? (required for completion)
|
- Single Keys/Pass locations? (required for completion)
|
||||||
- Spoiler-free hints where to go next? (ala Elderbug)
|
- Spoiler-free hints where to go next? (ala Elderbug)
|
||||||
|
|
@ -122,3 +110,19 @@
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
<!-- Instantly load test file (Debugging script) -->
|
||||||
|
<!-- <script src="loadJson.js"></script> -->
|
||||||
|
|
||||||
|
<!-- Main script -->
|
||||||
|
<script src="HKCheckCompletion.js"></script>
|
||||||
|
|
||||||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136831794-2"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', 'UA-136831794-2');
|
||||||
|
</script>
|
||||||
Loading…
Reference in a new issue