aboutsummaryrefslogtreecommitdiffstats
path: root/src/jquery.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-08-15 20:38:48 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-08-15 20:38:48 -0400
commitcecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9 (patch)
tree07a6ac4e076f88f4d868a953c9d69a4e784e4d1b /src/jquery.js
parent7877c4fa73120bc6d21a5fcd302a896f03b23876 (diff)
downloadjquery-cecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9.tar.gz
jquery-cecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9.zip
Specify support as a dependency wherever it is used. Optimize module order to save 15 bytes.
Diffstat (limited to 'src/jquery.js')
-rw-r--r--src/jquery.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jquery.js b/src/jquery.js
index ce3ad8e2f..644f29255 100644
--- a/src/jquery.js
+++ b/src/jquery.js
@@ -1,10 +1,11 @@
define([
"./core",
"./selector",
+ "./traversing",
"./callbacks",
"./deferred",
"./core/ready",
- "./traversing",
+ "./support",
"./data",
"./queue",
"./queue/delay",
@@ -26,7 +27,6 @@ define([
"./effects/animated-selector",
"./offset",
"./dimensions",
- "./support",
"./deprecated"
], function( jQuery ) {