mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
40 lines
739 B
JavaScript
40 lines
739 B
JavaScript
define([
|
|
"./core",
|
|
"./selector",
|
|
"./traversing",
|
|
"./callbacks",
|
|
"./deferred",
|
|
"./core/ready",
|
|
"./support",
|
|
"./data",
|
|
"./queue",
|
|
"./queue/delay",
|
|
"./attributes",
|
|
"./event",
|
|
"./event/alias",
|
|
"./manipulation",
|
|
"./manipulation/_evalUrl",
|
|
"./wrap",
|
|
"./css",
|
|
"./css/hiddenVisibleSelectors",
|
|
"./serialize",
|
|
"./ajax",
|
|
"./ajax/xhr",
|
|
"./ajax/script",
|
|
"./ajax/jsonp",
|
|
"./ajax/load",
|
|
"./effects",
|
|
"./effects/animatedSelector",
|
|
"./offset",
|
|
"./dimensions",
|
|
"./deprecated",
|
|
"./exports/amd"
|
|
], 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);
|
|
|
|
});
|