aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax/xhr.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ajax/xhr.js')
-rw-r--r--src/ajax/xhr.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js
index 3133dd439..637df0082 100644
--- a/src/ajax/xhr.js
+++ b/src/ajax/xhr.js
@@ -1,3 +1,8 @@
+define([
+ "../core",
+ "../ajax"
+], function( jQuery ) {
+
var xhrCallbacks, xhrSupported,
xhrId = 0,
// #5280: Internet Explorer will keep connections alive if we don't abort on unload
@@ -205,3 +210,5 @@ if ( xhrSupported ) {
}
});
}
+
+});