-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
70 lines (69 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./app.css">
<title>Observer</title>
<style type="text/css">
#clear-btn{
height:48px;
line-height:48px;
font-size: 16px;
position: absolute;
right: 167px;
top: 0px;
padding: 0 10px;
cursor: pointer;
background-color: #2696FB;
}
#download-btn{
font-size: 16px;
position: absolute;
right: 0px;
top: 0px;
padding:15px;
cursor: pointer;
background-color: orange ;
}
a {
text-decoration: none;
color:#000;
}
</style>
</head>
<body>
<div id="console"></div>
<div id="verticalbar"></div>
<div id="controller">
<div class="menu-title">
<h2 >Global</h2>
<span id="clear-btn">clear</span>
<a href="https://github.com/kosamari/observer/raw/master/observer.zip"><span id="download-btn">Download mac app</span></a>
</div>
<div id="scope">
<table>
<thead>
<tr>
<th width="30%">name</th>
<th width="20%">type</th>
<th width="50%">value</th>
</tr>
</thead>
<tbody id="scope-data">
</tbody>
</table>
</div>
<div id="horizontalbar"></div>
<div class="menu-title">
<h2>Log</h2>
</div>
<div id="log">
<ul></ul>
</div>
</div>
<script src="./lib/jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./lib/jqconsole.js" type="text/javascript" charset="utf-8"></script>
<script src="./lib/esprima.js"></script>
<script src="./Parser.js"></script>
<script src="./app.js"></script>
</body>
</html>