Permalink
1 comment
on commit
Please
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Make sure oldAbort is only called if the xhr object still exists.
- Loading branch information
Showing
1 changed file
with
1 addition
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 comment
on commit 61983cb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, as I reported in this ticket, this code doesn't work on IE because .call () is not defined in the .abort () function of the XHR object, but the old function can be called via a plain oldAbort ()
.
Hi, as reported in this ticket this code doesn't work on IE because .call () is not defined in the .abort () handler of the native XHR object, but a plain
oldAbort ()
does the job on IE.