1 | <!DOCTYPE html> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.md or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <meta charset="utf-8"> |
---|
9 | <title>#11562</title> |
---|
10 | <script src="../ckeditor.js"></script> |
---|
11 | <link href="sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <h1 class="samples"> |
---|
15 | #11562 |
---|
16 | </h1> |
---|
17 | <form action="sample_posteddata.php" method="post"> |
---|
18 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
19 | <p><nobr>Paste the image here: "^".</nobr></p> |
---|
20 | <p><img alt="Saturn V carrying Apollo 11" src="assets/sample.jpg"> |
---|
21 | </textarea> |
---|
22 | <script> |
---|
23 | |
---|
24 | CKEDITOR.replace( 'editor1', { |
---|
25 | allowedContent: true |
---|
26 | } ); |
---|
27 | |
---|
28 | </script> |
---|
29 | </form> |
---|
30 | </body> |
---|
31 | </html> |
---|