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/ajax | |
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/ajax')
-rw-r--r-- | src/ajax/xhr.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index 6feb94d57..fdc5b08d3 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -1,6 +1,7 @@ define([ "../core", - "../ajax" + "../ajax", + "../support" ], function( jQuery ) { jQuery.ajaxSettings.xhr = function() { |