From 4e7f34f6296111f7f91d621397dfb02c6bf4c41f Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Fri, 10 Oct 2014 21:01:59 +0400 Subject: [PATCH] Ajax: remove event dependency from the ajax module Closes gh-1695 --- src/ajax/xhr.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index a733eded0..32afd2309 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -23,8 +23,9 @@ var xhrId = 0, // Support: IE9 // Open requests must be manually aborted on unload (#5280) -if ( window.ActiveXObject ) { - jQuery( window ).on( "unload", function() { +// See https://support.microsoft.com/kb/2856746 for more info +if ( window.attachEvent ) { + window.attachEvent( "onunload", function() { for ( var key in xhrCallbacks ) { xhrCallbacks[ key ](); } -- 2.39.5