forked from johncipponeri/jstinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (50 loc) · 1.99 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create a new tinker - JSTinker</title>
<!-- Latest jQuery from Google CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- Ace Editor -->
<script src="js/ace/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="js/ace/ext-language_tools.js" type="text/javascript" charset="utf-8"></script>
<!-- JSTinker Scripts -->
<script src="js/jstinker.js?v=4"></script>
<link rel="stylesheet" href="css/jstinker.css" type="text/css">
</head>
<body>
<nav class="navbar navbar-default">
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="toolbar">
<ul class="nav navbar-nav">
<li id="btnRun"><a href=""><span class="glyphicon glyphicon-play" aria-hidden="true"></span> Run</a></li>
<li id="btnTidyUp"><a href=""><span class="glyphicon glyphicon-flash" aria-hidden="true"></span> TidyUp</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
<div class="editors">
<div class="top">
<!-- HTML Editor -->
<div class="editor-box">
<div class="editor" id="html-editor"></div>
</div>
<!-- CSS Editor -->
<div class="editor-box">
<div class="editor" id="css-editor"></div>
</div>
</div>
<div class="bottom">
<!-- JS Editor -->
<div class="editor-box">
<div class="editor" id="js-editor"></div>
</div>
<!-- Preview -->
<div class="editor-box">
<iframe class="editor" id="preview" name="result" sandbox="allow-forms allow-popups allow-scripts allow-same-origin" frameborder="0">
#document
</iframe>
</div>
</div>
</div>
</body>
</html>