diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2016-04-02 00:38:27 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2016-04-02 00:38:27 +0200 |
commit | 528637eb862877ca60cfa311eb54c6384566f831 (patch) | |
tree | a4d2e239466a83edb8ff4fb8751b6b80c445656f /src/matrix.js | |
parent | e059cf7f0a9b6325baad21c4fb47f0ec632088ca (diff) | |
download | svg.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/matrix.js')
-rw-r--r-- | src/matrix.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matrix.js b/src/matrix.js index e727b2f..37bd860 100644 --- a/src/matrix.js +++ b/src/matrix.js @@ -156,7 +156,7 @@ SVG.Matrix = SVG.invent({ // Convert to native SVGMatrix , native: function() { // create new matrix - var matrix = SVG.parser.draw.node.createSVGMatrix() + var matrix = SVG.parser.native.createSVGMatrix() // update with current values for (var i = abcdef.length - 1; i >= 0; i--) |