Changeset 4884
- Timestamp:
- 01/05/10 21:27:27 (3 years ago)
- Location:
- CKEditor/branches/versions/3.1.x
- Files:
-
- 7 edited
-
. (modified) (1 prop)
-
_dev/releaser/ckreleaser.release (modified) (1 prop)
-
_dev/releaser/release.bat (modified) (1 prop)
-
_samples/sharedspaces.html (modified) (5 diffs)
-
_source/plugins/div/dialogs/div.js (modified) (1 prop)
-
_source/plugins/div/plugin.js (modified) (1 prop)
-
_source/plugins/showborders/plugin.js (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/versions/3.1.x
- Property svn:mergeinfo changed
/CKEditor/trunk merged: 4883
- Property svn:mergeinfo changed
-
CKEditor/branches/versions/3.1.x/_dev/releaser/ckreleaser.release
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.1.x/_dev/releaser/release.bat
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.1.x/_samples/sharedspaces.html
r4882 r4884 49 49 Editor 1 (uses the shared toolbar and element path):</label><br /> 50 50 <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> 51 <script type="text/javascript">52 //<![CDATA[53 CKEDITOR.replace( 'editor1',54 {55 sharedSpaces :56 {57 top : 'topSpace',58 bottom : 'bottomSpace'59 },60 61 // Removes the maximize plugin as it's not usable62 // in a shared toolbar.63 // Removes the resizer as it's not usable in a64 // shared elements path.65 removePlugins : 'maximize,resize'66 } );67 //]]>68 </script>69 51 </p> 70 52 <p> … … 72 54 Editor 2 (uses the shared toolbar and element path):</label><br /> 73 55 <textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> 74 <script type="text/javascript">75 //<![CDATA[76 CKEDITOR.replace( 'editor2',77 {78 sharedSpaces :79 {80 top : 'topSpace',81 bottom : 'bottomSpace'82 },83 84 // Removes the maximize plugin as it's not usable85 // in a shared toolbar.86 // Removes the resizer as it's not usable in a87 // shared elements path.88 removePlugins : 'maximize,resize'89 } );90 //]]>91 </script>92 56 </p> 93 57 <p> … … 95 59 Editor 3 (uses the shared toolbar only):</label><br /> 96 60 <textarea cols="80" id="editor3" name="editor3" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> 97 <script type="text/javascript">98 //<![CDATA[99 CKEDITOR.replace( 'editor3',100 {101 sharedSpaces :102 {103 top : 'topSpace'104 },105 106 // Removes the maximize plugin as it's not usable107 // in a shared toolbar.108 removePlugins : 'maximize'109 } );110 //]]>111 </script>112 61 </p> 113 62 <p> … … 115 64 Editor 4 (no shared spaces):</label><br /> 116 65 <textarea cols="80" id="editor4" name="editor4" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> 117 <script type="text/javascript">118 //<![CDATA[119 CKEDITOR.replace( 'editor4' );120 //]]>121 </script>122 66 </p> 123 67 <p> … … 137 81 </p> 138 82 </div> 83 <script type="text/javascript"> 84 //<![CDATA[ 85 86 // Create all editor instances at the end of the page, so we are sure 87 // that the "bottomSpace" div is available in the DOM (IE issue). 88 89 CKEDITOR.replace( 'editor1', 90 { 91 sharedSpaces : 92 { 93 top : 'topSpace', 94 bottom : 'bottomSpace' 95 }, 96 97 // Removes the maximize plugin as it's not usable 98 // in a shared toolbar. 99 // Removes the resizer as it's not usable in a 100 // shared elements path. 101 removePlugins : 'maximize,resize' 102 } ); 103 104 CKEDITOR.replace( 'editor2', 105 { 106 sharedSpaces : 107 { 108 top : 'topSpace', 109 bottom : 'bottomSpace' 110 }, 111 112 // Removes the maximize plugin as it's not usable 113 // in a shared toolbar. 114 // Removes the resizer as it's not usable in a 115 // shared elements path. 116 removePlugins : 'maximize,resize' 117 } ); 118 119 CKEDITOR.replace( 'editor3', 120 { 121 sharedSpaces : 122 { 123 top : 'topSpace' 124 }, 125 126 // Removes the maximize plugin as it's not usable 127 // in a shared toolbar. 128 removePlugins : 'maximize' 129 } ); 130 131 CKEDITOR.replace( 'editor4' ); 132 //]]> 133 </script> 139 134 </body> 140 135 </html> -
CKEditor/branches/versions/3.1.x/_source/plugins/div/dialogs/div.js
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.1.x/_source/plugins/div/plugin.js
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.1.x/_source/plugins/showborders/plugin.js
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.
