-
Notifications
You must be signed in to change notification settings - Fork 6
/
repl.html
43 lines (42 loc) · 1.17 KB
/
repl.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./app.css">
</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>
</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>window.$ = window.jQuery = require('./lib/jquery-1.11.3.min.js');</script>
<!-- <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>