summaryrefslogtreecommitdiffstats
path: root/src/attr.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-06-21 18:32:10 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-06-21 18:32:10 +0200
commit06eda6b6f232f5c22a7dc3d56f7ce72a86f28ec8 (patch)
treea14a90c1bc65df569d775edae321500f77754d21 /src/attr.js
parentae7052db3c89d33af7ca9b1a8132e99103b73614 (diff)
downloadsvg.js-06eda6b6f232f5c22a7dc3d56f7ce72a86f28ec8.tar.gz
svg.js-06eda6b6f232f5c22a7dc3d56f7ce72a86f28ec8.zip
Removed scale consideration in `move()`
It wasn't compatible to the other move-functions e.g. for the PointArray
Diffstat (limited to 'src/attr.js')
-rw-r--r--src/attr.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attr.js b/src/attr.js
index 2d57390..9340981 100644
--- a/src/attr.js
+++ b/src/attr.js
@@ -28,7 +28,7 @@ SVG.extend(SVG.Element, {
parseFloat(v) : v
} else {
- // bUG FIX: some browsers will render a stroke if a color is given even though stroke width is 0
+ // BUG FIX: some browsers will render a stroke if a color is given even though stroke width is 0
if (a == 'stroke-width')
this.attr('stroke', parseFloat(v) > 0 ? this._stroke : null)
else if (a == 'stroke')