summaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-03-13 13:46:49 +0100
committerwout <wout@impinc.co.uk>2013-03-13 13:46:49 +0100
commitff09596144c3fd6770d1dc64178a10c2432396ca (patch)
tree5244a87e84b18cc8b55d9c116401d3478e320f33 /src/fx.js
parent4bd21ec64a0e3c1d4d0acf5685b2230285c7c16b (diff)
downloadsvg.js-ff09596144c3fd6770d1dc64178a10c2432396ca.tar.gz
svg.js-ff09596144c3fd6770d1dc64178a10c2432396ca.zip
Animation value clearance0.11
Diffstat (limited to 'src/fx.js')
-rw-r--r--src/fx.js17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/fx.js b/src/fx.js
index a9b652d..9e98204 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -223,13 +223,16 @@ SVG.extend(SVG.FX, {
clearInterval(this.interval)
/* reset storage for properties that need animation */
- this.attrs = {}
- this.trans = {}
- this.styles = {}
- this._move = null
- this._size = null
- this._after = null
- this._during = null
+ this.attrs = {}
+ this.trans = {}
+ this.styles = {}
+ delete this._x
+ delete this._y
+ delete this._cx
+ delete this._cy
+ delete this._size
+ delete this._after
+ delete this._during
return this
}