fcc-project-tutorials icon indicating copy to clipboard operation
fcc-project-tutorials copied to clipboard

Generation continue running also after clearing grid.

Open himanshush200599 opened this issue 6 years ago • 1 comments

If a clicked clear button, generation still increasing continuosly. i want, if clear button press then generation should set to 0 and stop till playButton press.

himanshush200599 avatar Sep 13 '18 18:09 himanshush200599

Update this function...

Code..

function declareWinner(who) {
	document.querySelector(".endgame").style.display = "block";
	document.querySelector(".endgame .text").innerText = who;

	for (var i = 0; i < cells.length; i++) {
		cells[i].removeEventListener('click', turnClick, false);
	}
}

ImAbhishekTomar avatar Oct 27 '18 23:10 ImAbhishekTomar