Spelling error, move jquery import to bootstrap

This commit is contained in:
James Musselman 2023-11-29 17:13:35 -06:00
parent 808f3f3772
commit ef9e1a3864

View file

@ -64,7 +64,7 @@
Notatio provides a user-friendly interface combined with robust features, making it the perfect choice for Notatio provides a user-friendly interface combined with robust features, making it the perfect choice for
developers, writers, and anyone who interacts with text on a daily basis. developers, writers, and anyone who interacts with text on a daily basis.
</p> </p>
<p><strong>Notatio is alpha software! Do no use it as your daily driver!</strong></p> <p><strong>Notatio is alpha software! Do not use it as your daily driver!</strong></p>
<h1 class="mt-4">Text Editor Comparison</h1> <h1 class="mt-4">Text Editor Comparison</h1>
<div class="table-responsive"> <div class="table-responsive">
@ -236,6 +236,7 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script> <script>
document.addEventListener("DOMContentLoaded", function () { document.addEventListener("DOMContentLoaded", function () {
const signupForm = document.forms.signupForm; const signupForm = document.forms.signupForm;
@ -349,9 +350,7 @@
}, 5000); }, 5000);
sleep(5000).then(() => { loginButton.disabled = false; }); sleep(5000).then(() => { loginButton.disabled = false; });
}; };
</script> </script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</body> </body>
</html> </html>