diff options
author | Kyle Gunger <corechg@gmail.com> | 2018-09-23 10:55:15 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2018-09-23 10:55:15 -0400 |
commit | a85f13d5019b5313cd2edc9e6a5441185a7b521e (patch) | |
tree | 8ba547a67ea57b9b4179ab4b32ea90e1b288a572 | |
parent | 88b3779578873b9673c32dd1ccc7b73cea440e84 (diff) |
Clock fix
+ Fixed bug preventing clock from working
Signed-off-by: Kyle Gunger <corechg@gmail.com>
-rw-r--r-- | mines.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ Board.prototype = { //Second
sec: function(){
- let c = parseInt(this.sTime.textContent);
+ let c = parseInt(sTime.textContent);
c++;
sTime.textContent = c;
},
|