diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-04-11 15:37:22 +0200 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-04-11 15:37:22 +0200 |
commit | 9737e8aa296b0f0ae5bb44a802aade11af1ce928 (patch) | |
tree | a96c96f28d0db2a720e9d40c340a11c2a5baaec8 | |
parent | 016720aec2b7d52be19f91151370617aaaa91709 (diff) | |
download | svg.js-9737e8aa296b0f0ae5bb44a802aade11af1ce928.tar.gz svg.js-9737e8aa296b0f0ae5bb44a802aade11af1ce928.zip |
fixed len being undeclared
-rw-r--r-- | src/fx.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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){ |