summaryrefslogtreecommitdiff
path: root/mines.js
diff options
context:
space:
mode:
authorKyle Gunger <corechg@gmail.com>2018-09-23 10:55:15 -0400
committerKyle Gunger <corechg@gmail.com>2018-09-23 10:55:15 -0400
commita85f13d5019b5313cd2edc9e6a5441185a7b521e (patch)
tree8ba547a67ea57b9b4179ab4b32ea90e1b288a572 /mines.js
parent88b3779578873b9673c32dd1ccc7b73cea440e84 (diff)
Clock fix
+ Fixed bug preventing clock from working Signed-off-by: Kyle Gunger <corechg@gmail.com>
Diffstat (limited to 'mines.js')
-rw-r--r--mines.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/mines.js b/mines.js
index 14e11dc..a2ed0fa 100644
--- a/mines.js
+++ b/mines.js
@@ -24,7 +24,7 @@ Board.prototype = {
//Second
sec: function(){
- let c = parseInt(this.sTime.textContent);
+ let c = parseInt(sTime.textContent);
c++;
sTime.textContent = c;
},