diff --git a/Startpage.html b/Startpage.html index d9d7d5c..c60bf22 100644 --- a/Startpage.html +++ b/Startpage.html @@ -18,8 +18,9 @@ - - + + + @@ -110,6 +111,14 @@

level Select


+
+
+

level Select

+ + +
+

+ @@ -125,10 +134,6 @@

level Select

- - - - diff --git a/options.js b/options.js index dc0b04e..fbfad96 100644 --- a/options.js +++ b/options.js @@ -9,7 +9,7 @@ function Options() this.MinQuizzes = 1; this.MaxQuizzes = 3; this.TimerAmount = 100; - this.RevealAnswers = false; + this.RevealAnswers = true; //This will enable the random fraction generator //If Use Generator is true than level can be no greater than 3 diff --git a/output.js b/output.js index a5bcf6f..feeb1ab 100644 --- a/output.js +++ b/output.js @@ -145,6 +145,5 @@ function DisplayScoreQuizButton() function DisplayAnswer(id) { - //Based on the id make the place holder for the answer hide or show - alert("Answer should Show"); + document.getElementById('answer' + id).style.visibility='visible'; }