From 1d9673b648879c903625faafad5cd16efe139618 Mon Sep 17 00:00:00 2001 From: tjhunt <tjhunt> Date: Wed, 11 Mar 2009 07:00:36 +0000 Subject: [PATCH] quiz timer js: Fix typo (that was not causing problems) --- mod/quiz/quiz.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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'; -- 2.39.5