aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-10-17 12:50:12 -0400
committerMike Sherov <mike.sherov@gmail.com>2012-10-17 12:52:12 -0400
commit16d996ba0c150101632cef140116b7f68da162f8 (patch)
tree81dc420726022f5a34477d7a9e7fb582881a43af /src/effects.js
parent3bfd15878442ed97a7c768a09ccd51571d4e1d47 (diff)
downloadjquery-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.js3
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 );