diff options
author | Oleg <markelog@gmail.com> | 2013-01-29 04:04:58 +0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-01-31 10:22:12 -0500 |
commit | d79bf3517eda9b74883c68c255e82067449d3274 (patch) | |
tree | 21462d915bb9f74739274d34b3fca8788425c1eb /src/ajax/xhr.js | |
parent | e392e5579b9f8f1e20c0befe0577e5141fc45468 (diff) | |
download | jquery-d79bf3517eda9b74883c68c255e82067449d3274.tar.gz jquery-d79bf3517eda9b74883c68c255e82067449d3274.zip |
Fix #13355. Tweak Uglify options and var order for gzip. Close gh-1151.
Change uglify-js options for compressor
Change variables initialization sequence for some declarations
Diffstat (limited to 'src/ajax/xhr.js')
-rw-r--r-- | src/ajax/xhr.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index 2353392f6..3133dd439 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -101,11 +101,7 @@ if ( xhrSupported ) { // Listener callback = function( _, isAbort ) { - - var status, - statusText, - responseHeaders, - responses; + var status, responseHeaders, statusText, responses; // Firefox throws exceptions when accessing properties // of an xhr when a network error occurred |