You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
In one of the applications we had to write a mechanism of aborting previous requests, when the new will be fired, you can see the simplified version here: http://plnkr.co/edit/ntDsVwDgG8digzjxBfKX.
The problem is, that after the change introduced in #9329 abortion of requests on IE9 stopped working, because "onabort" event is not supported there, which means that "completeRequest" function won't be called at all on abort.
In provided plunker you will see alert with message "ABORT" on all supported browsers except IE9.
Please have on mind, that IE9 is behaving weirdly when aborting the request, which was already fixed in Angular in #4940.