blob: 1a3a6285aa2101d28881ec4814f47b5c460f941b (
plain)
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<head>
<title>ClojureScript REPL</title>
<style type="text/css">
body {
font-family: Monaco,monospace;
font-size: 10pt;
}
.pad {
height: 20em;
}
#log {
height: 20em;
overflow: auto;
white-space: pre-wrap;
}
#log table {
border-collapse: collapse;
}
#log td {
vertical-align: top;
padding: 0;
}
.ns {
float: left;
}
.cg {
color: #00b;
}
.err {
color: #b00;
}
textarea#input {
padding: 0;
margin: 0;
border: none;
width: 90%;
height: 6em;
background: #f3f3f3;
}
</style>
<script type="text/javascript" src="../rt.js"></script>
<script type="text/javascript" src="../core.js"></script>
<script type="text/javascript" src="repl.js"></script>
</head>
<body>
<div id="log">
<div class="pad"></div>
</div>
<div class="ns cg">
user=> <br />
<img id="status" src="blank.gif">
</div>
<textarea id="input"></textarea>
<div id="scripts"></div>
</body>
</html>
|