forked from kindsoft/kindeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhidden.html
More file actions
48 lines (48 loc) · 1.53 KB
/
hidden.html
File metadata and controls
48 lines (48 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="../themes/default/default.css" />
<title>KindEditor Test</title>
</head>
<body>
<h1 id="type">KindEditor Test</h1>
<div id="J_editorArea" style="display:none;">
<textarea name="editor1" cols="100" rows="20" style="width:800px;height:200px;"></textarea>
</div>
<input type="button" id="J_show" value="Show" />
<input type="button" id="J_hide" value="Hide" />
<script src="../src/core.js"></script>
<script src="../src/config.js"></script>
<script src="../src/event.js"></script>
<script src="../src/html.js"></script>
<script src="../src/selector.js"></script>
<script src="../src/node.js"></script>
<script src="../src/range.js"></script>
<script src="../src/cmd.js"></script>
<script src="../src/widget.js"></script>
<script src="../src/edit.js"></script>
<script src="../src/toolbar.js"></script>
<script src="../src/menu.js"></script>
<script src="../src/colorpicker.js"></script>
<script src="../src/uploadbutton.js"></script>
<script src="../src/dialog.js"></script>
<script src="../src/tabs.js"></script>
<script src="../src/ajax.js"></script>
<script src="../src/main.js"></script>
<script src="../lang/zh-CN.js"></script>
<script>
KindEditor.ready(function(K) {
K.create('textarea', {
loadStyleMode : false
});
K('#J_show').click(function(e) {
K('#J_editorArea').show();
});
K('#J_hide').click(function(e) {
K('#J_editorArea').hide();
});
});
</script>
</body>
</html>