forked from viebel/core-async-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 919 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
25
26
27
28
<html>
<head>
<!--script type='text/javascript' id='lt_ws' src='http://localhost:61096/socket.io/lighttable/ws.js'></script-->
</head>
<body>
<input id="query" type="text"></input>
<button id="search">Search</button>
<button id="queries">QUERIES</button>
<input id="num-of-channels" type="number"></input>
<button id="channels">CHANNELS</button>
<p id="results"></p>
<div>
<button id="audio-test">AUDIO TEST</button>
<button id="yes">YES</button>
<button id="no">NO</button>
<div id="vocal"></div>
</div>
<p id="sound"></p>
<button id="draw">DRAW</button>
<canvas id="canvas"></canvas>
<script src="out/goog/base.js" type="text/javascript"></script>
<script src="async_tut1.js" type="text/javascript"></script>
<script type="text/javascript">
goog.require("async_tut1.core");
</script>
</body>
</html>