aboutsummaryrefslogtreecommitdiffstats
path: root/src/point.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2016-04-02 00:38:27 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2016-04-02 00:38:27 +0200
commit528637eb862877ca60cfa311eb54c6384566f831 (patch)
treea4d2e239466a83edb8ff4fb8751b6b80c445656f /src/point.js
parente059cf7f0a9b6325baad21c4fb47f0ec632088ca (diff)
downloadsvg.js-528637eb862877ca60cfa311eb54c6384566f831.tar.gz
svg.js-528637eb862877ca60cfa311eb54c6384566f831.zip
doublecheck SVG.parser, use svg element which is not in the dom (#471)
Diffstat (limited to 'src/point.js')
-rw-r--r--src/point.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/point.js b/src/point.js
index ba7bd8f..8d1dae9 100644
--- a/src/point.js
+++ b/src/point.js
@@ -45,7 +45,7 @@ SVG.Point = SVG.invent({
// Convert to native SVGPoint
, native: function() {
// create new point
- var point = SVG.parser.draw.node.createSVGPoint()
+ var point = SVG.parser.native.createSVGPoint()
// update with current values
point.x = this.x