Skip to content

Commit 51aa2c1

Browse files
author
Gav Wood
committedApr 22, 2015
Merge pull request ethereum#3 from bryndyment/patch-1
remove extra title tag; h1 closing tag fix; h3's → h2's
2 parents a4b025f + 1f497e3 commit 51aa2c1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎gavmble/gavmble.html

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<!doctype>
22
<html>
33
<head>
4-
<title>Gavsino - The Ubiquitous Casino</title>
54
<script>
65
//var web3 = require('web3');
76
//web3.setProvider(new web3.providers.AutoProvider());
@@ -114,19 +113,19 @@
114113
<title>Gavsino - The Ubiquitous Casino</title>
115114
</head>
116115
<body>
117-
<h1>Gavsino - The Ubiquitous Casino</h2>
116+
<h1>Gavsino - The Ubiquitous Casino</h1>
118117
<div>
119118
<div style="float: right; background: #fee; width: 15em; height: 30em">
120-
<h3>Bets</h3>
119+
<h2>Bets</h2>
121120
<div id="bets">
122121
</div>
123122
</div>
124123
<div style="">
125-
<h3>Shares</h3>
124+
<h2>Shares</h2>
126125
<div>Shares held: <span id="myshares"></span> shares (worth <span id="mysharesvalue"></span>) of <span id="totalshares"></span> (worth <span id="equity"></span>).</div>
127126
<div>Amount: <input id="sharesamount" value="1"></input> finney = <span id="sharesofvalue"></span> shares.</div>
128127
<div><button id="buyIn" onClick="buyIn(document.getElementById('sharesamount').value)">buy in</button><button id="cashOut" onClick="cashOut(document.getElementById('sharesofvalue').innerHTML)">cash out</button></div>
129-
<h3>Bet</h3>
128+
<h2>Bet</h2>
130129
<div>Amount: <input id="amount" value="1"></input> finney</div>
131130
<div>Probability: <input id="pIn256" value="128"></input> / 256</div>
132131
<div><button id="bet" onClick="newTicket(document.getElementById('amount').value, document.getElementById('pIn256').value)">bet</button></div>

0 commit comments

Comments
 (0)
Please sign in to comment.