-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
87 lines (70 loc) · 2.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Bier Bowling</title>
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<h1>Bier Bowling</h1>
<table class="standings">
<thead>
<tr class="rolls">
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="roll0"> </th>
<th class="roll1"> </th>
<th class="tenth roll0"> </th>
<th class="tenth roll1"> </th>
<th class="tenth roll2"> </th>
</tr>
</thead>
<tbody>
<tr class="points">
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="2"> </td>
<td colspan="3"> </td>
</tr>
</tbody>
</table>
<form class="roll-form">
<fieldset>
<label>Roll</label>
<input class="roll-field" type="number" min="0" max="10">
<button class="roll-button" type="submit">Throw</button>
</fieldset>
</form>
<script src="vendor/jquery-1.8.2.js"></script>
<script src="lib/bowling.js"></script>
<script src="lib/bowling.score.js"></script>
<script src="lib/bowling.app.js"></script>
<script>
(function () {
var stadings = $('.standings')
, form = $('.roll-form')
bowling = new BierBowling.App(stadings, form)
})()
</script>
</body>
</html>