Changeset 1772
- Timestamp:
- 2008-03-22 13:55:44 (7 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 3 modified
-
editor/filemanager/browser/default/js/fckxml.js (modified) (1 diff)
-
editor/_source/internals/fcktools_ie.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/filemanager/browser/default/js/fckxml.js
r1565 r1772 32 32 { 33 33 // Gecko / IE7 34 if ( typeof(XMLHttpRequest) != 'undefined' )35 return new XMLHttpRequest() ;34 try { return new XMLHttpRequest(); } 35 catch(e) {} 36 36 37 37 // IE6 -
FCKeditor/trunk/editor/_source/internals/fcktools_ie.js
r1629 r1772 75 75 { 76 76 case 'XmlHttp' : 77 // Try the native XMLHttpRequest introduced with IE7. 78 try { return new XMLHttpRequest() ; } catch (e) {} 79 77 80 aObjs = [ 'MSXML2.XmlHttp', 'Microsoft.XmlHttp' ] ; 78 81 break ; -
FCKeditor/trunk/_whatsnew.html
r1762 r1772 108 108 FCK.InsertHtml() in non-IE browsers would now activate the document processor 109 109 as expected.</li> 110 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1998">#1998</a>] The native 111 XMLHttpRequest class is now used in IE, whenever it is available.</li> 110 112 </ul> 111 113 <h3>