commit bb36e3de3d597bbc9ba62296568d19cb42301124
parent 48e14e8fc2652f66e599ba84fc2dbad23acd299d
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date: Tue, 15 Sep 2020 18:51:48 -0700
Fix bug in Enter method.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Scripts/Quizzer.js b/Scripts/Quizzer.js
@@ -234,9 +234,9 @@ function Continue() {
// Called when the user hits enter or presses the enter button
function Enter() {
if (app.responceActive) {
- Continue();
+ Submit();
}
else {
- Submit();
+ Continue();
}
}