aboutsummaryrefslogtreecommitdiffstats
path: root/src/jquery.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2014-12-09 15:39:24 -0500
committerTimmy Willison <timmywillisn@gmail.com>2014-12-09 15:39:24 -0500
commit6051609df35ef5e478c79c76534c03e4b46100bf (patch)
tree65da2705750c520dbdea933aacce39887d482c2a /src/jquery.js
parent58c24608210c9a9a264a38746628ebc26823f59b (diff)
downloadjquery-6051609df35ef5e478c79c76534c03e4b46100bf.tar.gz
jquery-6051609df35ef5e478c79c76534c03e4b46100bf.zip
Build: fix tests in AMD mode
Diffstat (limited to 'src/jquery.js')
-rw-r--r--src/jquery.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/jquery.js b/src/jquery.js
index d3857e955..1d56c4b15 100644
--- a/src/jquery.js
+++ b/src/jquery.js
@@ -28,10 +28,9 @@ define([
"./offset",
"./dimensions",
"./deprecated",
- "./exports/amd",
- "./exports/global"
+ "./exports/amd"
], function( jQuery ) {
-return jQuery;
+return (window.jQuery = window.$ = jQuery);
});