Changeset 4223
- Timestamp:
- 2009-09-11 18:26:00 (2 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 4 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/internals/fck.js (modified) (1 diff)
-
editor/_source/internals/fcktoolbarset.js (modified) (1 diff)
-
editor/fckeditor.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r4222 r4223 97 97 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2201">#2201</a>] Fixed a crash in IE 98 98 in an object is selected (with handles) on unload of the editor.</li> 99 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3053">#3053</a>] Fixed problems with 100 the height of the content area in Safari and Chrome.</li> 99 101 </ul> 100 102 <p> -
FCKeditor/trunk/editor/_source/internals/fck.js
r3973 r4223 495 495 } 496 496 497 if ( FCKBrowserInfo.IsGecko)497 if ( window.onresize ) 498 498 window.onresize() ; 499 499 }, -
FCKeditor/trunk/editor/_source/internals/fcktoolbarset.js
r2913 r4223 240 240 this._Document.getElementById( 'xExpanded' ).style.display = collapse ? 'none' : '' ; 241 241 242 if ( FCKBrowserInfo.IsGecko)242 if ( window.onresize ) 243 243 { 244 244 // I had to use "setTimeout" because Gecko was not responding in a right -
FCKeditor/trunk/editor/fckeditor.html
r2913 r4223 373 373 } 374 374 375 // Gecko browsers doesn't calculate well the IFRAME size so we must375 // Gecko and Webkit browsers don't calculate well the IFRAME size so we must 376 376 // recalculate it every time the window size changes. 377 if ( FCKBrowserInfo.IsGecko && !FCKBrowserInfo.IsOpera)377 if ( FCKBrowserInfo.IsGecko || FCKBrowserInfo.IsSafari ) 378 378 { 379 379 window.onresize = function( e ) 380 380 { 381 // Running in Chrome makes the window receive the event including subframes.381 // Running in Firefox's chrome makes the window receive the event including subframes. 382 382 // we care only about this window. Ticket #1642. 383 383 // #2002: The originalTarget from the event can be the current document, the window, or the editing area. 384 if ( e && e.originalTarget !== document && e.originalTarget !== window && (!e.originalTarget.ownerDocument || e.originalTarget.ownerDocument != document ))384 if ( e && e.originalTarget && e.originalTarget !== document && e.originalTarget !== window && (!e.originalTarget.ownerDocument || e.originalTarget.ownerDocument != document )) 385 385 return ; 386 386
Note: See TracChangeset
for help on using the changeset viewer.
