-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 916 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<button type="button" class="clicker">click</button>
<div>
count:
<span class="count">0</span>
</div>
<div>
upgrades:
<ol>
<li style="display: none;">Frobnicator<button class="0" type="button">get</button></li>
<li style="display: none;">Alpha Spanner<button class="1" type="button">get</button></li>
<li style="display: none;">Painted Turbine<button class="2" type="button">get</button></li>
<li style="display: none;">Geared Lutefisk<button class="3" type="button">get</button></li>
<li style="display: none;">Tiled Barnacle<button class="4" type="button">get</button></li>
</ol>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.22/rx.all.js" type="text/javascript"></script>
<script src="clicker.js" type="text/javascript"></script>
</body>
</html>