Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($httpBackend): Fix for IE9 AJAX request aborting error. #4529

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/ng/httpBackend.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawDocument,
// always async
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {

// Aborting AJAX requests in IE9 makes the XHR object's properties inaccessible and throws the following error:
// SCRIPT575: Could not complete the operation due to error c00c023f.
if (msie && msie == 9 && xhr.aborted) {
completeRequest(callback, -1, "", "");
return;
}

var responseHeaders = xhr.getAllResponseHeaders();

// responseText is the old-school way of retrieving response (supported by IE8 & 9)
Expand Down Expand Up @@ -98,6 +106,7 @@ function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawDocument,
function timeoutRequest() {
status = -1;
jsonpDone && jsonpDone();
xhr && msie && msie == 9 && (xhr.aborted = true);
xhr && xhr.abort();
}

Expand Down