| 1 | <!DOCTYPE html> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <title>#9412 Tickt TC</title> |
|---|
| 5 | <script src="../../ckeditor.js"></script> |
|---|
| 6 | </head> |
|---|
| 7 | <body> |
|---|
| 8 | <textarea id="themed"> |
|---|
| 9 | <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com">CKEditor</a>.</p> |
|---|
| 10 | </textarea> |
|---|
| 11 | <div id="inline" contenteditable="true"> |
|---|
| 12 | <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com">CKEditor</a>.</p> |
|---|
| 13 | </div> |
|---|
| 14 | <script> |
|---|
| 15 | var config = { toolbarCanCollapse: 1, toolbarStartupExpanded : false }; |
|---|
| 16 | CKEDITOR.replace( 'themed', config ); |
|---|
| 17 | CKEDITOR.inline( 'inline', config ); |
|---|
| 18 | </script> |
|---|
| 19 | </body> |
|---|
| 20 | </html> |
|---|