From a85f13d5019b5313cd2edc9e6a5441185a7b521e Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Sun, 23 Sep 2018 10:55:15 -0400 Subject: Clock fix + Fixed bug preventing clock from working Signed-off-by: Kyle Gunger --- mines.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }, -- cgit v1.2.3