Skip to content

Commit abdc89a

Browse files
authored
Ajax: Simplify jQuery.ajaxSettings.xhr
Previously, jQuery.ajaxSettings.xhr, contents were wrapped in a try-catch as we defined jQuery.support.ajax & jQuery.support.cors executed during the jQuery load and we didn't want to crash if IE had native XHR disabled (which is possible). While jQuery hasn't supported the ActiveX-based XHR since 2.0, jQuery with XHR disabled could still be used for its other features in such a crippled browser. Since gh-4347, jQuery.support.ajax & jQuery.support.cors no longer exist, so we don't need the try-catch anymore. Fixes gh-1967 Closes gh-4467 Ref gh-4347
1 parent d7e6419 commit abdc89a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ajax/xhr.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ define( [
66
"use strict";
77

88
jQuery.ajaxSettings.xhr = function() {
9-
try {
10-
return new window.XMLHttpRequest();
11-
} catch ( e ) {}
9+
return new window.XMLHttpRequest();
1210
};
1311

1412
var xhrSuccessStatus = {

0 commit comments

Comments
 (0)