Skip to content

Commit

Permalink
one change
Browse files Browse the repository at this point in the history
  • Loading branch information
Bronzeowl committed Apr 9, 2017
1 parent 0bfae0e commit ac4a7ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $(document).ready(function(){
stopTime();
isSelected = true;
$("#answer-holder").show();
$("#answer-holder").html("Right! The answer was: " + answer[count]);
$("#answer-holder").html("Right! The answer is: " + answer[count]);
displayImage();
correct++;
count++;
Expand All @@ -100,7 +100,7 @@ $(document).ready(function(){
stopTime();
isSelected = true;
$("#answer-holder").show();
$("#answer-holder").html("Wrong! The answer was: " + answer[count]);
$("#answer-holder").html("Wrong! The answer is: " + answer[count]);
displayImage();
incorrect++;
count++;
Expand Down

0 comments on commit ac4a7ca

Please sign in to comment.