Changeset 6941 for CKEditor/trunk
- Timestamp:
- 05/19/11 17:35:23 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/floatpanel/plugin.js
r6920 r6941 224 224 // (#3426) 225 225 if ( CKEDITOR.env.ie && CKEDITOR.env.quirks && width > 0 ) 226 width += ( target.$.offsetWidth || 0 ) - ( target.$.clientWidth || 0 ) ;226 width += ( target.$.offsetWidth || 0 ) - ( target.$.clientWidth || 0 ) + 3; 227 227 // A little extra at the end. 228 228 // If not present, IE6 might break into the next line, but also it looks better this way … … 240 240 // (#3426) 241 241 if ( CKEDITOR.env.ie && CKEDITOR.env.quirks && height > 0 ) 242 height += ( target.$.offsetHeight || 0 ) - ( target.$.clientHeight || 0 ) ;242 height += ( target.$.offsetHeight || 0 ) - ( target.$.clientHeight || 0 ) + 3; 243 243 244 244 target.setStyle( 'height', height + 'px' );
Note: See TracChangeset
for help on using the changeset viewer.
