| 1 | <html xmlns="http://www.w3.org/1999/xhtml"><head> |
|---|
| 2 | <title>CKEditor Test</title> |
|---|
| 3 | <script src="/ckeditor/ckeditor.js" type="text/javascript"></script> |
|---|
| 4 | <script> |
|---|
| 5 | function Loader(){ |
|---|
| 6 | CKEDITOR.replace("Editor_PlaceHolder", |
|---|
| 7 | { |
|---|
| 8 | basePath:"http://test.webcolorbox.com/ckeditor/", |
|---|
| 9 | fullPage:false, |
|---|
| 10 | startupFocus:true, |
|---|
| 11 | width:800, |
|---|
| 12 | height:389, |
|---|
| 13 | resize_enabled:false, |
|---|
| 14 | skin:"office2003" |
|---|
| 15 | } |
|---|
| 16 | ); |
|---|
| 17 | } |
|---|
| 18 | </script> |
|---|
| 19 | </head> |
|---|
| 20 | <body onload="Loader()"> |
|---|
| 21 | <div id="Editor_PlaceHolder" style="display:none;">Code is here!!!</div> |
|---|
| 22 | </body> |
|---|
| 23 | </html> |
|---|