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 ffc24f5b2f76c378cc647cfa8e7efa0b585b9992
parent 5825e4dc3fdd1d452723ce537ef173af7d2e30f2
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Wed, 10 Jun 2020 09:01:18 -0700

Add support for multiple voice responces.

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

diff --git a/Scripts/Quizzer.js b/Scripts/Quizzer.js @@ -378,6 +378,7 @@ function Reset() { responce = "" for (var result of event.results[0]) { responce += `${result.transcript}, `; + responce += `${result.transcript.split(" or ").join(", ")}, `; } document.getElementById("quizzerInput").value = responce; Submit()