spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

commit 2a6d21982520898c6bc9163f74cac398f59396a5
parent eba393680f4d304377d7c39067e0c5ec756aefbe
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Fri, 12 Jun 2020 08:01:59 -0700

Fix bug where terms aren't saved when modified.

Diffstat:
MScripts/Quizzer.js | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/Scripts/Quizzer.js b/Scripts/Quizzer.js @@ -491,6 +491,9 @@ function Continue() { Term--; break; } + + // Save terms to local storage + localStorage.setItem("terms", JSON.stringify(Terms)); // Reset quizzer Reset();