mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
removed static imports in index.html
This commit is contained in:
parent
02d3d3e5d8
commit
e4fb7fa22a
2 changed files with 3 additions and 15 deletions
|
@ -4764,7 +4764,7 @@ if (firebase.app().options.projectId === "monkey-type-dev-67af4") {
|
|||
|
||||
if (window.location.hostname === "localhost") {
|
||||
window.onerror = function (error) {
|
||||
this.showNotification(error, 3000);
|
||||
showNotification(error, 3000);
|
||||
};
|
||||
$("#top .logo .top").text("localhost");
|
||||
$("head title").text($("head title").text() + " (localhost)");
|
||||
|
|
|
@ -3485,23 +3485,11 @@
|
|||
|
||||
<!-- Initialize Firebase -->
|
||||
<script src="/__/firebase/init.js"></script>
|
||||
<script
|
||||
src="https://kit.fontawesome.com/f3f87d89b4.js"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
<script src="js/jquery-3.5.1.min.js"></script>
|
||||
<script src="js/jquery.color.min.js"></script>
|
||||
<script src="js/easing.js"></script>
|
||||
<script src="js/jquery.cookie-1.4.1.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/jquery.gsap.min.js"></script>
|
||||
<script src="js/monkeytype.js"></script>
|
||||
|
||||
<!-- Initialize Firebase -->
|
||||
<script src="/__/firebase/init.js"></script>
|
||||
<!-- Add in our js-->
|
||||
<script src="js/monkeytype.js"></script>
|
||||
<script
|
||||
src="https://kit.fontawesome.com/f3f87d89b4.js"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
<script src="js/monkeytype.js"></script>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue