diff options
author | Chris Antaki <ChrisAntaki@gmail.com> | 2013-11-05 21:23:04 -0800 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-12-16 12:48:46 -0500 |
commit | b8d0d54a3c4960794a1b492957abeb56eddd1e48 (patch) | |
tree | e07b6c64faed7953e5d27c81058438738d771a93 /src/effects.js | |
parent | b278d8174f307fd351ae9ce6409c1806e7426e34 (diff) | |
download | jquery-b8d0d54a3c4960794a1b492957abeb56eddd1e48.tar.gz jquery-b8d0d54a3c4960794a1b492957abeb56eddd1e48.zip |
Reduce size by reordering variable declarations
Close gh-1421
Diffstat (limited to 'src/effects.js')
-rw-r--r-- | src/effects.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/effects.js b/src/effects.js index cbf098d1a..b439d8d58 100644 --- a/src/effects.js +++ b/src/effects.js @@ -82,8 +82,8 @@ function createFxNow() { // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, - attrs = { height: type }, - i = 0; + i = 0, + attrs = { height: type }; // if we include width, step value is 1 to do all cssExpand values, // if we don't include width, step value is 2 to skip over Left and Right @@ -590,8 +590,8 @@ jQuery.each({ jQuery.timers = []; jQuery.fx.tick = function() { var timer, - timers = jQuery.timers, - i = 0; + i = 0, + timers = jQuery.timers; fxNow = jQuery.now(); |