Changeset 659
- Timestamp:
- 2007-08-13 10:42:53 (17 months ago)
- Location:
- FCKeditor/trunk/editor/_source
- Files:
-
- 2 modified
-
fckeditorapi.js (modified) (1 diff)
-
internals/fckdomtools.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/fckeditorapi.js
r546 r659 112 112 eval.call( oParentWindow, sScript ) ; 113 113 } 114 else if ( FCKBrowserInfo.IsSafari )114 else if ( FCKBrowserInfo.IsSafari || FCKBrowserInfo.IsGecko ) 115 115 { 116 // oParentWindow.eval in Safari executes in the calling window116 // oParentWindow.eval in Safari and Gran Paradiso executes in the calling window 117 117 // environment, instead of the parent one. The following should make it work. 118 118 var oParentDocument = oParentWindow.document ; -
FCKeditor/trunk/editor/_source/internals/fckdomtools.js
r656 r659 330 330 if ( doc.body.childNodes.length == 1 331 331 && doc.body.firstChild.nodeType == 1 332 && doc.body.firstChild.tagName.toLowerCase() == 'br' 332 333 && ( doc.body.firstChild.getAttribute( '_moz_dirty' ) != null 333 334 || doc.body.firstChild.getAttribute( 'type' ) == '_moz' ) )