-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
79 lines (70 loc) · 1.65 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
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Editor</title>
<style type="text/css" media="screen">
body {
overflow: hidden;
}
#input {
margin: 0px;
position: absolute;
top: 0px;
width:50%;
left: 0px;
height:90%;
float:left;
}
#output {
margin: 0px;
position: absolute;
top: 0px;
width: 50%;
right: 0px;
height: 90%;
}
#debug {
margin: 0px;
position:absolute;
bottom: 0px;
left: 0px;
width: 100%;
height: 10%;
border:1px solid blue;
overflow-y:scroll;
}
#filebrowser, #filebrowser td {
border:1px solid black;
background:white;
}
#filebrowser {
width:100%;
}
#filebrowser td {
padding:2px 15px;
cursor:pointer;
}
#dialog {
z-index:100;
overflow:hide;
width:400px;
border: 2px solid black;
background:white;
}
</style>
</head>
<body>
<div id="input"></div>
<div id="output"></div>
<div id="debug"></div>
<script src="lib/jquery-1.6.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/coffee-script.js" type="text/javascript" charset="utf-8"></script>
<script src="ace/build/src/ace.js" type="text/javascript" charset="utf-8"></script>
<!-- <script src="ace/build/src/theme-twilight.js" type="text/javascript" charset="utf-8"></script> -->
<script src="ace/build/src/mode-coffee.js" type="text/javascript" charset="utf-8"></script>
<script src="ace/build/src/mode-javascript.js" type="text/javascript" charset="utf-8"></script>
<script src="editor.coffee" type="text/coffeescript" carset="utf-8"></script>
</body>
</html>