Changeset 2215
- Timestamp:
- 07/14/08 11:49:22 (5 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/internals/fcktools_ie.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r2209 r2215 83 83 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1907">#1907</a>] Fixed sporadic 84 84 "FCKeditorAPI is not defined" errors in Firefox 3.</li> 85 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2356">#2356</a>] Fixed access denied 86 error in IE7 when FCKeditor is launched from local filesystem.</li> 85 87 </ul> 86 88 <p> -
FCKeditor/trunk/editor/_source/internals/fcktools_ie.js
r1772 r2215 76 76 case 'XmlHttp' : 77 77 // Try the native XMLHttpRequest introduced with IE7. 78 try { return new XMLHttpRequest() ; } catch (e) {} 78 if ( document.location.protocol != 'file:' ) 79 try { return new XMLHttpRequest() ; } catch (e) {} 79 80 80 81 aObjs = [ 'MSXML2.XmlHttp', 'Microsoft.XmlHttp' ] ;
Note: See TracChangeset
for help on using the changeset viewer.
