-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
44 lines (35 loc) · 997 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dora</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<!-- jquery -->
<script src="lib/jquery-1.11.1.min.js"></script>
<!-- diff -->
<script src="lib/diff/diff_match_patch.js"></script>
<!-- ueditor -->
<script src="richeditor/ueditor.config.js"></script>
<script src="richeditor/ueditor.js"></script>
<!-- emon -->
<script src="codeeditor/emon.config.js"></script>
<script src="codeeditor/emon.js"></script>
<!-- dora -->
<script src="dora.config.js"></script>
<script src="import.js"></script>
<script src="lang/zh-cn/zh-cn.js"></script>
<link rel="stylesheet" href="theme/dora.css"/>
</head>
<body>
<div>
<h1>Dora</h1>
<div class="main">
<div id="container" style="width:600px;height:500px;">
</div>
</div>
</div>
<script>
var dora = DR.getDora('container');
</script>
</body>
</html>