diff options
Diffstat (limited to 'src/jquery.js')
-rw-r--r-- | src/jquery.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/jquery.js b/src/jquery.js index 744a98e5d..52fc87dbd 100644 --- a/src/jquery.js +++ b/src/jquery.js @@ -30,11 +30,12 @@ define( [ "./offset", "./dimensions", "./deprecated", - "./exports/amd" + "./exports/amd", + "./exports/global" ], function( jQuery ) { "use strict"; -return ( window.jQuery = window.$ = jQuery ); +return jQuery; } ); |