adding some strings
[moodle-linuxchix.git] / mod / hotpot / template / v6 / hp6timer.js_
blobaafb5924f76bc2c2927fe0e6448e68d03d83b9b5
3 //CODE FOR HANDLING TIMER
4 //Timer code
5 var Seconds = [intSeconds];
6 var Interval = null;
8 function StartTimer(){
9         Interval = window.setInterval('DownTime()',1000);
10         document.getElementById('TimerText').style.display = 'inline';
13 function DownTime(){
14         var ss = Seconds % 60;
15         if (ss<10){
16                 ss='0' + ss + '';
17         }
19         var mm = Math.floor(Seconds / 60);
21         if (document.getElementById('Timer') == null){
22                 return;
23         }
25         document.getElementById('TimerText').innerHTML = mm + ':' + ss;
26         if (Seconds < 1){
27                 window.clearInterval(Interval);
28                 TimeOver = true;
29                 TimesUp();
30         }
31         Seconds--;