diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2016-04-09 18:06:24 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2016-04-09 18:06:24 +0200 |
commit | 700a77060fe2b347e256abdb423c75a05613a690 (patch) | |
tree | 2454b9cf3b0dbb855741c58677c8ae31545b0a4c /src/sugar.js | |
parent | 8bdc17f571d428a62afaf5853679378047b5aafd (diff) | |
download | svg.js-700a77060fe2b347e256abdb423c75a05613a690.tar.gz svg.js-700a77060fe2b347e256abdb423c75a05613a690.zip |
fixed old target references
Diffstat (limited to 'src/sugar.js')
-rw-r--r-- | src/sugar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sugar.js b/src/sugar.js index 6e1bbf4..7db5ce6 100644 --- a/src/sugar.js +++ b/src/sugar.js @@ -76,9 +76,9 @@ SVG.extend(SVG.Element, SVG.FX, { SVG.extend(SVG.Rect, SVG.Ellipse, SVG.Circle, SVG.Gradient, SVG.FX, { // Add x and y radius radius: function(x, y) { - var type = (this.target || this).type; + var type = (this._target || this).type; return type == 'radial' || type == 'circle' ? - this.attr({ 'r': new SVG.Number(x) }) : + this.attr('r', new SVG.Number(x)) : this.rx(x).ry(y == null ? x : y) } }) |