Changeset 4836
- Timestamp:
- 12/29/09 15:05:28 (3 years ago)
- Location:
- CKEditor/trunk/_source
- Files:
-
- 5 edited
-
plugins/maximize/plugin.js (modified) (1 diff)
-
skins/kama/mainui.css (modified) (1 diff)
-
skins/office2003/mainui.css (modified) (1 diff)
-
skins/v2/mainui.css (modified) (1 diff)
-
themes/default/theme.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/maximize/plugin.js
r4375 r4836 115 115 exec : function() 116 116 { 117 var container = editor.container.getChild( [ 0, 0 ]);117 var container = editor.container.getChild( 0 ); 118 118 var contents = editor.getThemeSpace( 'contents' ); 119 119 -
CKEditor/trunk/_source/skins/kama/mainui.css
r4780 r4836 17 17 border: 1px solid #D3D3D3; 18 18 padding: 5px; 19 } 20 21 .cke_skin_kama span.cke_browser_webkit 22 { 23 display: block; 19 24 } 20 25 -
CKEditor/trunk/_source/skins/office2003/mainui.css
r4774 r4836 11 11 display: inline-table; 12 12 width: 100%; 13 } 14 15 .cke_skin_office2003 span.cke_browser_webkit 16 { 17 display: block; 13 18 } 14 19 -
CKEditor/trunk/_source/skins/v2/mainui.css
r4774 r4836 14 14 15 15 .cke_skin_v2 16 { 17 display: block; 18 } 19 20 .cke_skin_v2 span.cke_browser_webkit 16 21 { 17 22 display: block; -
CKEditor/trunk/_source/themes/default/theme.js
r4780 r4836 277 277 width += 'px'; 278 278 279 var cont ents = CKEDITOR.document.getById( 'cke_contents_' + this.name );280 var outer = resizeInner ? contents.getAscendant( 'table' ).getParent()281 : contents.getAscendant( 'table' ).getParent().getParent().getParent();279 var container = this.container, 280 contents = CKEDITOR.document.getById( 'cke_contents_' + this.name ), 281 outer = resizeInner ? container.getChild( 0 ) : container; 282 282 283 283 // Resize the width first. … … 303 303 CKEDITOR.editor.prototype.getResizable = function() 304 304 { 305 return this.container.getChild( [ 0, 0 ]);305 return this.container.getChild( 0 ); 306 306 }; 307 307
Note: See TracChangeset
for help on using the changeset viewer.
