aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/support.js')
-rw-r--r--src/support.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/support.js b/src/support.js
index e46588dd1..a02e97d2e 100644
--- a/src/support.js
+++ b/src/support.js
@@ -1,3 +1,8 @@
+define([
+ "./core",
+ "./core/swap"
+], function( jQuery ) {
+
jQuery.support = (function( support ) {
var input = document.createElement("input"),
fragment = document.createDocumentFragment(),
@@ -111,3 +116,4 @@ jQuery.support = (function( support ) {
return support;
})( {} );
+});