1 | <!DOCTYPE html> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <title>#10766</title> |
---|
9 | <meta charset="utf-8"> |
---|
10 | <script src="../../ckeditor.js"></script> |
---|
11 | <link href="../sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <h1 class="samples"> |
---|
15 | <a href="index.html">CKEditor Samples</a> » #10766 |
---|
16 | </h1> |
---|
17 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
18 | <p>Hello world!</p> |
---|
19 | <p style="text-align:right"><a href="#">Wooo! I'm so sticky!</a></p> |
---|
20 | </textarea> |
---|
21 | <script> |
---|
22 | |
---|
23 | CKEDITOR.replace( 'editor1' ); |
---|
24 | |
---|
25 | </script> |
---|
26 | </body> |
---|
27 | </html> |
---|