diff options
author | wout <wout@impinc.co.uk> | 2013-03-13 13:46:49 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-03-13 13:46:49 +0100 |
commit | ff09596144c3fd6770d1dc64178a10c2432396ca (patch) | |
tree | 5244a87e84b18cc8b55d9c116401d3478e320f33 /src/fx.js | |
parent | 4bd21ec64a0e3c1d4d0acf5685b2230285c7c16b (diff) | |
download | svg.js-ff09596144c3fd6770d1dc64178a10c2432396ca.tar.gz svg.js-ff09596144c3fd6770d1dc64178a10c2432396ca.zip |
Animation value clearance0.11
Diffstat (limited to 'src/fx.js')
-rw-r--r-- | src/fx.js | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -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 } |