aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/effects.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects.js b/src/effects.js
index 78f36827a..cb78b5cfe 100644
--- a/src/effects.js
+++ b/src/effects.js
@@ -42,8 +42,8 @@ var fxNow, timerId,
// Update tween properties
if ( parts ) {
+ start = tween.start = +start || +target || 0;
tween.unit = unit;
- tween.start = +start || +target || 0;
// If a +=/-= token was provided, we're doing a relative animation
tween.end = parts[ 1 ] ?
start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :