diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-28 17:36:38 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-28 17:36:38 -0400 |
commit | 57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29 (patch) | |
tree | b7ba23b0af4579e796ca361fc3bfcea54064dcfc /ui/jquery.effects.slide.js | |
parent | c974d0fc69849d9e7854a532da01f00587d04527 (diff) | |
download | jquery-ui-57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29.tar.gz jquery-ui-57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29.zip |
Removed some unused variables.
Diffstat (limited to 'ui/jquery.effects.slide.js')
-rw-r--r-- | ui/jquery.effects.slide.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/jquery.effects.slide.js b/ui/jquery.effects.slide.js index e57a21264..ae25a187e 100644 --- a/ui/jquery.effects.slide.js +++ b/ui/jquery.effects.slide.js @@ -23,8 +23,7 @@ $.effects.effect.slide = function( o, done ) { ref = (direction === "up" || direction === "down") ? "top" : "left", positiveMotion = (direction === "up" || direction === "left"), distance, - animation = {}, - size; + animation = {}; // Adjust $.effects.save( el, props ); |