Changeset 5516
- Timestamp:
- 05/25/10 12:13:18 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/themes/default/theme.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r5511 r5516 50 50 <li><a href="http://dev.fckeditor.net/ticket/5330">#5330</a> : Corrected detection of Ctrl and Meta keys in Macs for the context menu.</li> 51 51 <li><a href="http://dev.fckeditor.net/ticket/5434">#5434</a> : Fixed access denied issues with IE when accessing web sites through IPv6 IP addresses.</li> 52 <li><a href="http://dev.fckeditor.net/ticket/3601">#3601</a> : [Safari] Bad performance when drag editor chrome resizer.</li>53 52 <li><a href="http://dev.fckeditor.net/ticket/4476">#4476</a> : [IE] Inaccessible empty list item contains sub list.</li> 54 53 <li><a href="http://dev.fckeditor.net/ticket/4881">#4881</a> : [IE] Selection range broken because of cutting a single control type element from it.</li> -
CKEditor/trunk/_source/themes/default/theme.js
r5459 r5516 284 284 outer = resizeInner ? container.getChild( 1 ) : container; 285 285 286 // Resize the width first. 287 // WEBKIT BUG: Webkit requires that we put the editor off from display when we 288 // resize it. If we don't, the browser crashes! 289 CKEDITOR.env.webkit && outer.setStyle( 'display', 'none' ); 286 290 outer.setStyle( 'width', width ); 291 if ( CKEDITOR.env.webkit ) 292 { 293 outer.$.offsetWidth; 294 outer.setStyle( 'display', '' ); 295 } 287 296 288 297 // Get the height delta between the outer table and the content area.
Note: See TracChangeset
for help on using the changeset viewer.
