Built motion from commit 1038d87.|0.0.141
[motion.git] / public / assets / plugins / ckeditor / samples / old / autogrow / autogrow.html
1 <!DOCTYPE html>\r
2 <!--\r
3 Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.\r
4 For licensing, see LICENSE.md or http://ckeditor.com/license\r
5 -->\r
6 <html>\r
7 <head>\r
8         <meta charset="utf-8">\r
9         <title>AutoGrow Plugin &mdash; CKEditor Sample</title>\r
10         <script src="../../../ckeditor.js"></script>\r
11         <link rel="stylesheet" href="../../../samples/old/sample.css">\r
12         <meta name="ckeditor-sample-name" content="AutoGrow plugin">\r
13         <meta name="ckeditor-sample-group" content="Plugins">\r
14         <meta name="ckeditor-sample-description" content="Using the AutoGrow plugin in order to make the editor grow to fit the size of its content.">\r
15 </head>\r
16 <body>\r
17         <h1 class="samples">\r
18                 <a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Using AutoGrow Plugin\r
19         </h1>\r
20         <div class="warning deprecated">\r
21                 This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/autogrow.html">brand new version in CKEditor SDK</a>.\r
22         </div>\r
23         <div class="description">\r
24                 <p>\r
25                         This sample shows how to configure CKEditor instances to use the\r
26                         <strong>AutoGrow</strong> (<code>autogrow</code>) plugin that lets the editor window expand\r
27                         and shrink depending on the amount and size of content entered in the editing area.\r
28                 </p>\r
29                 <p>\r
30                         In its default implementation the <strong>AutoGrow feature</strong> can expand the\r
31                         CKEditor window infinitely in order to avoid introducing scrollbars to the editing area.\r
32                 </p>\r
33                 <p>\r
34                         It is also possible to set a maximum height for the editor window. Once CKEditor\r
35                         editing area reaches the value in pixels specified in the\r
36                         <code><a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-autoGrow_maxHeight">autoGrow_maxHeight</a></code>\r
37                         configuration setting, scrollbars will be added and the editor window will no longer expand.\r
38                 </p>\r
39                 <p>\r
40                         To add a CKEditor instance using the <code>autogrow</code> plugin and its\r
41                         <code>autoGrow_maxHeight</code> attribute, insert the following JavaScript call to your code:\r
42                 </p>\r
43 <pre class="samples">\r
44 CKEDITOR.replace( '<em>textarea_id</em>', {\r
45         <strong>extraPlugins: 'autogrow',</strong>\r
46         autoGrow_maxHeight: 800,\r
47 \r
48         // Remove the Resize plugin as it does not make sense to use it in conjunction with the AutoGrow plugin.\r
49         removePlugins: 'resize'\r
50 });</pre>\r
51                 <p>\r
52                         Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
53                         the <code>&lt;textarea&gt;</code> element to be replaced with CKEditor. The maximum height should\r
54                         be given in pixels.\r
55                 </p>\r
56         </div>\r
57         <form action="../../../samples/sample_posteddata.php" method="post">\r
58                 <p>\r
59                         <label for="editor1">\r
60                                 CKEditor using the <code>autogrow</code> plugin with its default configuration:\r
61                         </label>\r
62                         <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
63                         <script>\r
64 \r
65                                 CKEDITOR.replace( 'editor1', {\r
66                                         extraPlugins: 'autogrow',\r
67                                         removePlugins: 'resize'\r
68                                 });\r
69 \r
70                         </script>\r
71                 </p>\r
72                 <p>\r
73                         <label for="editor2">\r
74                                 CKEditor using the <code>autogrow</code> plugin with maximum height set to 400 pixels:\r
75                         </label>\r
76                         <textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
77                         <script>\r
78 \r
79                                 CKEDITOR.replace( 'editor2', {\r
80                                         extraPlugins: 'autogrow',\r
81                                         autoGrow_maxHeight: 400,\r
82                                         removePlugins: 'resize'\r
83                                 });\r
84 \r
85                         </script>\r
86                 </p>\r
87                 <p>\r
88                         <input type="submit" value="Submit">\r
89                 </p>\r
90         </form>\r
91         <div id="footer">\r
92                 <hr>\r
93                 <p>\r
94                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
95                 </p>\r
96                 <p id="copy">\r
97                         Copyright &copy; 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
98                         Knabben. All rights reserved.\r
99                 </p>\r
100         </div>\r
101 </body>\r
102 </html>\r