remove json decoration

This commit is contained in:
Bel LaPointe
2021-03-12 09:14:15 -06:00
parent 3a47b0a76a
commit f59e98981b
4 changed files with 68 additions and 150 deletions

View File

@@ -6,9 +6,17 @@
</head>
<body>
<h1>Poor Man's Blind Man's Poker</h1>
<button onclick="start(); return false;">Start</button>
<button onclick="join(); return false;">Join</button>
<button onclick="drop(); return false;">Drop</button>
<form id="control-games" onsubmit="return false;">
<button onclick="start(); return false;">Start</button>
<button onclick="join(); return false;">Join</button>
<button onclick="drop(); return false;">Drop</button>
</form>
<form id="control-game" onsubmit="return false;">
<button onclick="fold(this); return false;">Fold</button>
<button onclick="check(this); return false;">Check</button>
<input min=0 type="number"/>
<button onclick="raise(this); return false;">Raise cents</button>
</form>
<div id="game"></div>
</body>
</html>