-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (40 loc) · 1.14 KB
/
index.html
File metadata and controls
50 lines (40 loc) · 1.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Socket Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<button class="js-btn-test">Test</button>
<button class="js-btn-join">Join</button>
<!-- <button class="js-ack">Send <span class="small">(with acknowledgement)</span></button> -->
<!-- <button class="js-chatBtn">Chat</button> -->
<div class="connections">
<dt>
<dt class="label">
Connections
</dt>
<dd class="js-connect">
0
</dd>
<dt class="label">
Time (ticks)
</dt>
<dd class="js-time">
0
</dd>
<dt class="label">
Offset (ms)
</dt>
<dd class="js-offset">
0
</dd>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.2/socket.io.slim.js"></script>
<!-- <script src="node_modules/socket-ntp/client/socket.io.min.js"></script> -->
<script src="node_modules/socket-ntp/client/ntp.js"></script>
<script src="MONITOR.js"></script>
</body>
</html>