| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <!-- |
|---|
| 3 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
|---|
| 4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
|---|
| 5 | --> |
|---|
| 6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 7 | <head> |
|---|
| 8 | <title>Full Page Editing with Document Properties Plugin — CKEditor Sample</title> |
|---|
| 9 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
|---|
| 10 | <script type="text/javascript" src="http://nightly.ckeditor.com/full/ckeditor.js"></script> |
|---|
| 11 | </head> |
|---|
| 12 | <body> |
|---|
| 13 | <textarea cols="80" id="editor1" name="editor1" rows="10"><html><head><title>CKEditor Sample</title></head><body><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></body></html></textarea> |
|---|
| 14 | <script type="text/javascript"> |
|---|
| 15 | //<![CDATA[ |
|---|
| 16 | // Setup all editor instances for the necessary selection hooks. |
|---|
| 17 | CKEDITOR.replace( 'editor1', |
|---|
| 18 | { |
|---|
| 19 | fullPage : true |
|---|
| 20 | }); |
|---|
| 21 | //]]> |
|---|
| 22 | </script> |
|---|
| 23 | </body> |
|---|
| 24 | </html> |
|---|
| 25 | |
|---|