|
Revision 1, 0.6 kB
(checked in by xinha, 8 years ago)
|
|
Bootstrap
|
| Line | |
|---|
| 1 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 2 | <head> |
|---|
| 3 | <title>HTMLArea 3.0 core test</title> |
|---|
| 4 | <script type="text/javascript"> |
|---|
| 5 | _editor_url = "../"; |
|---|
| 6 | _editor_lang = "en"; |
|---|
| 7 | </script> |
|---|
| 8 | <script type="text/javascript" src="../htmlarea.js"></script> |
|---|
| 9 | <script type="text/javascript"> |
|---|
| 10 | HTMLArea.loadPlugin("ContextMenu"); |
|---|
| 11 | HTMLArea.onload = function() { |
|---|
| 12 | var editor = new HTMLArea("editor"); |
|---|
| 13 | editor.registerPlugin(ContextMenu); |
|---|
| 14 | editor.generate(); |
|---|
| 15 | }; |
|---|
| 16 | HTMLArea.init(); |
|---|
| 17 | </script> |
|---|
| 18 | </head> |
|---|
| 19 | <body> |
|---|
| 20 | <textarea id="editor" rows="20" cols="80" style="width: 100%"></textarea> |
|---|
| 21 | </body> |
|---|
| 22 | </html> |
|---|