| 1 | <!DOCTYPE html> |
|---|
| 2 | <!-- |
|---|
| 3 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. |
|---|
| 4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
|---|
| 5 | --> |
|---|
| 6 | <html> |
|---|
| 7 | <head> |
|---|
| 8 | <title>Replace Textarea by Code — CKEditor Sample</title> |
|---|
| 9 | <meta charset="utf-8"> |
|---|
| 10 | <script src="../ckeditor.js"></script> |
|---|
| 11 | <link href="sample.css" rel="stylesheet"> |
|---|
| 12 | </head> |
|---|
| 13 | <body> |
|---|
| 14 | <form action="sample_posteddata.php" method="post"> |
|---|
| 15 | <div id="a"><div> |
|---|
| 16 | <script> |
|---|
| 17 | // This may be moved to core/config.js and result will be indentical. |
|---|
| 18 | CKEDITOR.config.toolbarGroups = [ 'bidi' ]; |
|---|
| 19 | |
|---|
| 20 | CKEDITOR.appendTo( 'a' ); |
|---|
| 21 | CKEDITOR.appendTo( 'a' ); |
|---|
| 22 | </script> |
|---|
| 23 | </form> |
|---|
| 24 | </body> |
|---|
| 25 | </html> |
|---|