-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
executable file
·49 lines (48 loc) · 1.85 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link id="mainStyle" rel="stylesheet" href="css/styles.css"/>
<title></title>
</head>
<body>
<div id="content">
<div id="main">
<div class="section live-input-container">
<input type="checkbox" id="show-live-input" class="toggle-input show-live-input" checked="checked">
<label class="section-header toggle" for="show-live-input">Live Input</label>
<div class="live-input-section toggle-content">
<div class="section-editor">
<pre id="editor">// js input
</pre></div>
<button id="run-input" class="button">run</button>
</div>
</div>
<div class="section scripts">
<div id="linked-scripts2" class="linked-scripts"></div>
<div class="output-panel output-folder-path">
<span class="folder-path">
Folder Path:
<span id="folder-path">local path not set</span>
</span>
<span id="set-folder" class="set-folder">Set</span>
</div>
</div>
<div class="section">
<label class="section-header">Load Remote Script </label>
<div class="remote-script">
<input type="text" id="script-url" class="text-input" placeholder="https://gist.github.com/script.js" />
<button id="load-script" class="button load-script">Load</button>
</div>
</div>
<div id="output" class="output-panel "></div>
</div>
</div>
<script src="js/libs/CSInterface.js"></script>
<script src="js/libs/jquery-2.0.2.min.js"></script>
<script src="js/libs/underscore.js"></script>
<script src="js/themeManager.js"></script>
<script src="js/libs/ace.js"></script>
<script src="js/main.js"></script>
</body>
</html>