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>Massive inline editing — CKEditor Sample</title> |
---|
10 | <script src="../ckeditor.js"></script> |
---|
11 | <link href="sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <div> |
---|
15 | <h1 class="samples"><a href="index.html">CKEditor Samples</a> » Massive inline editing</h1> |
---|
16 | <div class="description"> |
---|
17 | <p>This sample page demonstrates the inline editing feature - CKEditor instances will be created automatically from page elements with <strong>contentEditable</strong> attribute set to value <strong>true</strong>:</p> |
---|
18 | <pre class="samples"><div <strong>contenteditable="true</strong>" > ... </div></pre> |
---|
19 | <p>Click inside of any element below to start editing.</p> |
---|
20 | </div> |
---|
21 | </div> |
---|
22 | |
---|
23 | <div id="container"> |
---|
24 | <ul> |
---|
25 | <li> |
---|
26 | <div contenteditable="true"> |
---|
27 | <ol><li>1</li></ol> |
---|
28 | <ul><li>2</li></ul> |
---|
29 | </div> |
---|
30 | </li> |
---|
31 | <li> |
---|
32 | <div contenteditable="true"> |
---|
33 | <ul><li>3</li></ul> |
---|
34 | <ol><li>4</li></ol> |
---|
35 | </div> |
---|
36 | </li> |
---|
37 | </ul> |
---|
38 | </div> |
---|
39 | |
---|
40 | |
---|
41 | <div id="footer"> |
---|
42 | <hr> |
---|
43 | <p> |
---|
44 | CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/"> |
---|
45 | http://ckeditor.com</a> |
---|
46 | </p> |
---|
47 | <p id="copy"> |
---|
48 | Copyright © 2003-2014, <a class="samples" href="http://cksource.com/">CKSource</a> |
---|
49 | - Frederico Knabben. All rights reserved. |
---|
50 | </p> |
---|
51 | </div> |
---|
52 | </body> |
---|
53 | </html> |
---|