aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 15:37:22 +0200
committerdotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 15:37:22 +0200
commit9737e8aa296b0f0ae5bb44a802aade11af1ce928 (patch)
treea96c96f28d0db2a720e9d40c340a11c2a5baaec8
parent016720aec2b7d52be19f91151370617aaaa91709 (diff)
downloadsvg.js-9737e8aa296b0f0ae5bb44a802aade11af1ce928.tar.gz
svg.js-9737e8aa296b0f0ae5bb44a802aade11af1ce928.zip
fixed len being undeclared
-rw-r--r--src/fx.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fx.js b/src/fx.js
index 922abc9..f9fbbc7 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -584,7 +584,7 @@ SVG.FX = SVG.invent({
// calculates the step for every property and calls block with it
, eachAt: function(){
- var i, at, self = this, target = this.target(), s = this.situation
+ var i, len, at, self = this, target = this.target(), s = this.situation
// apply animations which can be called trough a method
for(i in s.animations){