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 217aa00c2df831f96dc4a6de6d5c74271847d0fe
parent 29f32293dc466dfc98c11345f38fb2c2451a07d7
Author: Asher Morgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Mon, 16 Mar 2020 13:56:58 -0700

Implement accented u shortcut.

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

diff --git a/Spanish Quizzer.js b/Spanish Quizzer.js @@ -184,6 +184,7 @@ function Check() { responce = responce.replace("n`", "ñ"); // Apply n with tilde shortcut 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 var responces = responce.split(","); // Split string by commas responces.push(responce); // Keep origional responce for (var i = 0; i < responces.length; i++) {