Skip to content

Commit

Permalink
Merge pull request #94 from JHNUL/fix-js-strict-pragma-typo
Browse files Browse the repository at this point in the history
Fix typo in js use strict pragma
  • Loading branch information
jmesnil authored Jul 23, 2024
2 parents 3c61e13 + 5e92326 commit dace72c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<script>
(() => {
"use script";
"use strict";
window.addEventListener("load", () => {
const button = document.querySelector("button[type='submit']");
button.addEventListener("click", (event) => {
Expand Down

0 comments on commit dace72c

Please sign in to comment.