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:38:48 -0400 |
commit | cecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9 (patch) | |
tree | 07a6ac4e076f88f4d868a953c9d69a4e784e4d1b /src/support.js | |
parent | 7877c4fa73120bc6d21a5fcd302a896f03b23876 (diff) | |
download | jquery-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/support.js')
-rw-r--r-- | src/support.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index a02e97d2e..5880e2310 100644 --- a/src/support.js +++ b/src/support.js @@ -1,6 +1,8 @@ define([ "./core", - "./core/swap" + "./core/swap", + // This is listed as a dependency for build order, but it's still optional in builds + "./core/ready" ], function( jQuery ) { jQuery.support = (function( support ) { |