jquery.js 650 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. define( [
  2. "./core",
  3. "./selector",
  4. "./traversing",
  5. "./callbacks",
  6. "./deferred",
  7. "./deferred/exceptionHook",
  8. "./core/ready",
  9. "./data",
  10. "./queue",
  11. "./queue/delay",
  12. "./attributes",
  13. "./event",
  14. "./event/alias",
  15. "./event/focusin",
  16. "./manipulation",
  17. "./manipulation/_evalUrl",
  18. "./wrap",
  19. "./css",
  20. "./css/hiddenVisibleSelectors",
  21. "./serialize",
  22. "./ajax",
  23. "./ajax/xhr",
  24. "./ajax/script",
  25. "./ajax/jsonp",
  26. "./ajax/load",
  27. "./event/ajax",
  28. "./effects",
  29. "./effects/animatedSelector",
  30. "./offset",
  31. "./dimensions",
  32. "./deprecated",
  33. "./exports/amd"
  34. ], function( jQuery ) {
  35. "use strict";
  36. return ( window.jQuery = window.$ = jQuery );
  37. } );