diff options
Diffstat (limited to 'src/jquery.js')
-rw-r--r-- | src/jquery.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/jquery.js b/src/jquery.js new file mode 100644 index 000000000..ce3ad8e2f --- /dev/null +++ b/src/jquery.js @@ -0,0 +1,38 @@ +define([ + "./core", + "./selector", + "./callbacks", + "./deferred", + "./core/ready", + "./traversing", + "./data", + "./queue", + "./queue/delay", + "./attributes", + "./event", + "./event/alias", + "./manipulation", + "./manipulation/_evalUrl", + "./wrap", + "./css", + "./css/hidden-visible-selectors", + "./serialize", + "./ajax", + "./ajax/xhr", + "./ajax/script", + "./ajax/jsonp", + "./ajax/load", + "./effects", + "./effects/animated-selector", + "./offset", + "./dimensions", + "./support", + "./deprecated" +], function( jQuery ) { + +// Expose jQuery and $ identifiers, even in +// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) +// and CommonJS for browser emulators (#13566) +return (window.jQuery = window.$ = jQuery); + +}); |