Ajax: Fix #14424. Use ActiveX in IE9+ on local files, close gh-1434.

We can't feature detect ActiveX in IE11, but we can just call
it and catch whatever error occurs, then try normal XHR.
This commit is contained in:
Dave Methvin 2013-11-13 21:31:07 -05:00
parent d0782ed7e8
commit 498e0e6c9b
2 changed files with 10 additions and 1 deletions

View File

@ -20,6 +20,7 @@
"globals": {
"jQuery": true,
"define": true,
"module": true
"module": true,
"ActiveXObject": true
}
}

View File

@ -5,6 +5,14 @@ define([
], function( jQuery, support ) {
jQuery.ajaxSettings.xhr = function() {
// Support: IE9+
// IE can't get local files with standard XHR, only ActiveX
if ( this.isLocal ) {
try {
return new ActiveXObject( "Microsoft.XMLHTTP" );
} catch( e ) {}
}
try {
return new XMLHttpRequest();
} catch( e ) {}