-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 1.14 KB
/
index.html
File metadata and controls
36 lines (31 loc) · 1.14 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Live Code</title>
<link rel="stylesheet" href="/static/css/codemirror.css">
<link rel="stylesheet" href="/static/css/monokai.css">
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="file">
<div class="selected" id="filename"><span id="selectedFileName">index</span><span>.js</span></div>
<ul id="filenames" class="hide">
</ul>
<div class="hide" id="newNameWrapper">
<span contenteditable="true" id="newName" class="grey-text" tabindex="0" onsubmit="addFile">new...</span>
<img src="/static/img/plus.svg" alt="+" id="addNewFile">
</div>
</div>
<div class="users">
<span class="number" id="users">1</span>
<img src="/static/img/users.svg" alt="Users online">
</div>
<div class="hide" id="hiddenEditor"></div>
<script src="/static/js/jquery.js"></script>
<script src="/static/js/codemirror.js"></script>
<script src="/static/js/javascript.js"></script>
<script src="/static/js/socket.io.js"></script>
<script src="/static/js/scripts.js"></script>
</body>
</html>