diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-10-17 12:50:12 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-10-17 12:52:12 -0400 |
commit | 16d996ba0c150101632cef140116b7f68da162f8 (patch) | |
tree | 81dc420726022f5a34477d7a9e7fb582881a43af /src/effects.js | |
parent | 3bfd15878442ed97a7c768a09ccd51571d4e1d47 (diff) | |
download | jquery-16d996ba0c150101632cef140116b7f68da162f8.tar.gz jquery-16d996ba0c150101632cef140116b7f68da162f8.zip |
no ticket: remove and enforce unused vars in jshint
Diffstat (limited to 'src/effects.js')
-rw-r--r-- | src/effects.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/effects.js b/src/effects.js index cff0dc835..dcc6c00b7 100644 --- a/src/effects.js +++ b/src/effects.js @@ -73,7 +73,6 @@ function createTweens( animation, props ) { function Animation( elem, properties, options ) { var result, index = 0, - tweenerIndex = 0, length = animationPrefilters.length, deferred = jQuery.Deferred().always( function() { // don't match elem in the :animated selector @@ -108,7 +107,7 @@ function Animation( elem, properties, options ) { startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], - createTween: function( prop, end, easing ) { + createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); |