From: tjhunt Date: Wed, 11 Mar 2009 07:00:36 +0000 (+0000) Subject: quiz timer js: Fix typo (that was not causing problems) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=1d9673b648879c903625faafad5cd16efe139618;p=moodle.git quiz timer js: Fix typo (that was not causing problems) --- diff --git a/mod/quiz/quiz.js b/mod/quiz/quiz.js index afe073758b..adb3a074a2 100644 --- a/mod/quiz/quiz.js +++ b/mod/quiz/quiz.js @@ -74,9 +74,9 @@ quiz_timer = { quiz_timer.endtime = new Date().getTime() + timeleft*1000; // Get references to some bits of the DOM we need. - quiz_timer.timerouter = document.getElementById('quiz-timer'), - quiz_timer.timerdisplay = document.getElementById('quiz-time-left'), - quiz_timer.quizform = document.getElementById('responseform'), + quiz_timer.timerouter = document.getElementById('quiz-timer'); + quiz_timer.timerdisplay = document.getElementById('quiz-time-left'); + quiz_timer.quizform = document.getElementById('responseform'); // Make the timer visible. quiz_timer.timerouter.style.display = 'block';