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 /dist/svg.js | |
parent | 4bd21ec64a0e3c1d4d0acf5685b2230285c7c16b (diff) | |
download | svg.js-ff09596144c3fd6770d1dc64178a10c2432396ca.tar.gz svg.js-ff09596144c3fd6770d1dc64178a10c2432396ca.zip |
Animation value clearance0.11
Diffstat (limited to 'dist/svg.js')
-rw-r--r-- | dist/svg.js | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/dist/svg.js b/dist/svg.js index 717ac6f..da992fe 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -1,4 +1,4 @@ -/* svg.js v0.10 - svg regex default color viewbox bbox element container fx event group arrange defs mask pattern gradient doc shape wrap rect ellipse line poly path image text nested sugar - svgjs.com/license */ +/* svg.js v0.10-1-g4bd21ec - svg regex default color viewbox bbox element container fx event group arrange defs mask pattern gradient doc shape wrap rect ellipse line poly path image text nested sugar - svgjs.com/license */ ;(function() { this.SVG = function(element) { @@ -364,8 +364,8 @@ this.y = box.y + element.trans.y /* add the center */ - this.cx = box.x + element.trans.x + box.width / 2 - this.cy = box.y + element.trans.y + box.height / 2 + this.cx = this.x + box.width / 2 + this.cy = this.x + box.height / 2 /* plain width and height */ this.width = box.width @@ -510,10 +510,6 @@ /* redirect to the style method */ return this.style(v) - } else if (a == 'transform') { - /* redirect to the transform method*/ - return this.transform(v) - } else { /* store value */ this.attrs[a] = v @@ -1133,13 +1129,16 @@ 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 } |