diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-08-15 20:38:48 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-08-15 20:41:43 -0400 |
commit | 73158618131bd3b67e0a152000754c0d39b2519e (patch) | |
tree | 1d12a46bf45d3ac533d8be2a47add461b33bb24d /src/jquery.js | |
parent | f5b1a8eab7a32ebfcaaa5069dcdaa9f67f42a341 (diff) | |
download | jquery-73158618131bd3b67e0a152000754c0d39b2519e.tar.gz jquery-73158618131bd3b67e0a152000754c0d39b2519e.zip |
Specify support as a dependency wherever it is used. Optimize module order to save 15 bytes.
Conflicts:
src/css.js
src/manipulation.js
src/offset.js
src/support.js
Diffstat (limited to 'src/jquery.js')
-rw-r--r-- | src/jquery.js | 4 |
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 ) { |