Changeset 2562
- Timestamp:
- 10/13/08 19:13:25 (5 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/fckeditorapi.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r2561 r2562 74 74 where email links in IE would take the browser to a new page in addition to calling up the 75 75 email client.</li> 76 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2519">#2519</a>] Fixed race 77 condition at registering the FCKeditorAPI object in multiple editor scenarios.</li> 76 78 </ul> 77 79 <p> -
FCKeditor/trunk/editor/_source/fckeditorapi.js
r2188 r2562 43 43 'Version : "[Development]",' + 44 44 'VersionBuild : "[DEV]",' + 45 'Instances : new Object(),' +45 'Instances : window.FCKeditorAPI && window.FCKeditorAPI.Instances || {},' + 46 46 47 47 'GetInstance : function( name )' + … … 61 61 '},' + 62 62 63 '_FunctionQueue : {' +63 '_FunctionQueue : window.FCKeditorAPI && window.FCKeditorAPI._FunctionQueue || {' + 64 64 'Functions : new Array(),' + 65 65 'IsRunning : false,' + … … 118 118 else if ( FCKBrowserInfo.IsSafari ) 119 119 { 120 // oParentWindow.eval in Safari and Gran Paradiso executes in the calling window 121 // environment, instead of the parent one. The following should make it work. 120 // oParentWindow.eval in Safari executes in the calling window 121 // environment, instead of the parent one. The following should 122 // make it work. 122 123 var oParentDocument = oParentWindow.document ; 123 124 var eScript = oParentDocument.createElement('script') ;
Note: See TracChangeset
for help on using the changeset viewer.
