Skip to content

Commit

Permalink
Updating jquery version.
Browse files Browse the repository at this point in the history
Currently seeking out fix for iphone page load failing.
  • Loading branch information
LandonJPGinn committed May 12, 2024
1 parent 88504c4 commit 694ef9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conjugation/drill.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:[email protected]&display=swap" rel="stylesheet">

<script defer type="text/ecmascript" src="//code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script defer type="module" src="rules.js"></script>
<script defer type="module" src="drill.js"></script>

Expand Down
4 changes: 3 additions & 1 deletion conjugation/drill.js
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,9 @@ export default function checkAnswer() {
processAnswer();
}

function startQuiz() {
function startQuiz(event) {
event.preventDefault();
console.log(event);

var options = getOptions();

Expand Down
4 changes: 4 additions & 0 deletions todo
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@


Next Up:
- [ ] solve iphone mode not working in safari (version of javascript???)
- [ ] Add feedback google form
- [ ] Add tip button namely for this VVVV step

# very time consuming step, may require a spreadsheet
- [ ] Add Top 100 most common verbs
- [ ] Add all verbs
Expand Down

0 comments on commit 694ef9c

Please sign in to comment.