TIMBOVILL commited on
Commit
8b5f7ca
·
verified ·
1 Parent(s): 8d8b865

Update script.js

Browse files
Files changed (1) hide show
  1. script.js +1 -1
script.js CHANGED
@@ -18,7 +18,7 @@ function showTime(){
18
  m = (m < 10) ? "0" + m : m;
19
  s = (s < 10) ? "0" + s : s;
20
 
21
- var time = h + ":" + m + session;
22
  document.getElementById("MyClockDisplay").innerText = time;
23
  document.getElementById("MyClockDisplay").textContent = time;
24
 
 
18
  m = (m < 10) ? "0" + m : m;
19
  s = (s < 10) ? "0" + s : s;
20
 
21
+ var time = h + ":" + m;
22
  document.getElementById("MyClockDisplay").innerText = time;
23
  document.getElementById("MyClockDisplay").textContent = time;
24