-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (34 loc) · 937 Bytes
/
index.html
File metadata and controls
42 lines (34 loc) · 937 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://cdn.sockjs.org/sockjs-0.3.min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<h3>Collaborative Editor!</h3>
<style id='default_style' type="text/css" media="screen">
.ace_marker-layer{
z-index:initial;
}
.ace_text-layer{
z-index:5;
}
.ace_cursor{
z-index:6;
pointer-events: auto;
}
div.ace_selection{
pointer-events: auto;
}
</style>
<style id='my_style' type="text/css" media="screen"></style>
<div id="editor">
</div>
<div>Current User List:</div>
<script src="/static/src-noconflict/ace.js" type="text/javascript" charset="utf-8">
</script>
<script src="/static/coedit.js" type="text/javascript"></script>
</body>
</html>