forked from diegocstn/ThreePin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (50 loc) · 2 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<main>
<h1>ThreePin - A Socket.IO client debugger</h1>
<section id="status" class="disconnected">
<div class="status-badge">
<ul class="status-pin">
<li></li>
<li></li>
<li></li>
</ul>
</div>
</section>
<section id="conf" class="section-banner cf">
<h3>CONF</h3>
<dl class="conf-list">
<dt>Server URL</dt>
<dd id="conf-url"></dd>
<dt>Server Port</dt>
<dd id="conf-port"></dd>
</dl>
<button class="btn btn-gray">Connect</button>
</section>
<h3>CONSOLE</h3>
<section id="console" class="section-banner"></section>
<section id="event-emit" class="section-col50">
<h3>EMIT</h3>
<dl class="event-emit-list"></dl>
</section>
<section id="event-listen" class="section-col50">
<h3>LISTEN</h3>
<ul class="event-listen-list"></ul>
</section>
</main>
</body>
<script type="text/javascript" src="js/threepin.js"></script>
<script type="text/javascript" src="components/socket.io-client/dist/socket.io.min.js"></script>
</html>