Select Git revision
-
Will Billingsley authored
This reverts commit 1ab924f6.
Will Billingsley authoredThis reverts commit 1ab924f6.
index.html 426 B
<!DOCTYPE html>
<html>
<title>Conway's Game of Life</title>
<h1>Conway's Game of Life</h1>
<div id="game" style="font-family: monospace; cursor: pointer;">
</div>
<div>
<button onclick="javascript: { gameOfLife.stepGame(); render(); }">Step</button>
</div>
<script src="gameOfLife.js"></script>
<script src="render.js"></script>
<script>
gameOfLife.emptyBoard()
render()
</script>
</html>