diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2023-10-25 21:27:35 -0700 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2023-10-25 21:27:35 -0700 |
| commit | 33680b9a238ffda3a2efca654591e53e423b310f (patch) | |
| tree | 572e1e2698af2afcf18c5820b96dcb95f70a8b7f /site/game/index.html | |
| parent | dcb5bacebf5eb516fd012aca7c85708b9dab0073 (diff) | |
added game object and game dom synchronization
Diffstat (limited to 'site/game/index.html')
| -rw-r--r-- | site/game/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site/game/index.html b/site/game/index.html index d8f7c8a..4f47476 100644 --- a/site/game/index.html +++ b/site/game/index.html @@ -12,7 +12,7 @@ <a href=".."><button>Home</button></a> </nav> <p>Try to beat the computer :)</p> - <button id="test_bttn" onclick="toggle_screen()">Test Button</button> + <!-- <button id="test_bttn" onclick="toggle_screen()">Test Button</button> --> <main> <section id="optionsScreen" class="screen"> <h2>Options</h2> @@ -20,7 +20,7 @@ <label for="graphOrder">Select a number of vertices for a path:</label> <input type="number" name="graphOrder" id="graphOrder" defaultValue=7 min=1 max=30 placeholder="Enter a value (1-30)"></input> </div> - <button onclick="playGame()">Play</button> + <button onclick="startGame()">Play</button> </section> <section id="gameScreen" class="screen inactive"> <h2>Game</h2> |
