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 b93c690bda233dfad7a6ebe55f32cbd53dd03a81
parent 65b8b89185c6c6c99e9d68a06b1525801b24651c
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Sun, 22 Mar 2020 17:29:48 -0700

Add diaeresis shortcut.

Diffstat:
MSpanish Quizzer.js | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/Spanish Quizzer.js b/Spanish Quizzer.js @@ -235,6 +235,7 @@ function Check() { responce = responce.replace("n~", "ñ"); // Apply n with tilde shortcut responce = responce.replace("o`", "ó"); // Apply accented o shortcut responce = responce.replace("u`", "ú"); // Apply accented u shortcut + responce = responce.replace("u~", "ü"); // Apply u with diaeresis shortcut var responces = responce.split(","); // Split string by commas for (var i = 0; i < responces.length; i++) { responces[i] = responces[i].trim(); // Trim whitespace