forked from html5cat/redactor-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 663 Bytes
/
index.html
File metadata and controls
30 lines (25 loc) · 663 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
<!DOCTYPE html>
<html>
<head>
<title>Redactor in action</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./css/live.css" />
<script src="./lib/jquery-1.7.min.js"></script>
<link rel="stylesheet" href="./redactor/redactor.css" />
<script src="./redactor/redactor.js"></script>
<script type="text/javascript">
$(document).ready(
function()
{
$('#redactor_content').redactor();
}
);
</script>
</head>
<body>
<div id="page">
<h2>Redactor in action</h2>
<textarea id="redactor_content" name="content" style="height: 560px;"></textarea>
</div>
</body>
</html>