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 f5f0f908185dc45a19ab2303bd0526db9963500d
parent d475eddfc607ab830c361daf667c5fd6fc3aa7d9
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Wed, 29 Jul 2020 16:27:06 -0700

Implement Ctrl+Enter shortcut in quizzer.

Diffstat:
MScripts/Home.js | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Scripts/Home.js b/Scripts/Home.js @@ -31,8 +31,12 @@ function Load() { } }); document.getElementById("quizzerInput").addEventListener("keydown", function (e) { - if (e.keyCode === 13) { - // Key was enter + if (e.ctrlKey && e.keyCode === 13) { + // Key was Ctrl+Enter + Reset(); // Skip prompt + } + else if (e.keyCode === 13) { + // Key was Enter if (document.getElementById("quizzerInput").readOnly) { Continue(); }