diff options
author | wout <wout@impinc.co.uk> | 2013-07-22 13:52:20 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-07-22 13:52:20 +0100 |
commit | 9773661d9321927b5b86feef007fabba68eccf32 (patch) | |
tree | a45461b0a574017f6b6933b1ae2a73233e711e8f /src/path.js | |
parent | f5c28a74a55501982d5c76d4155170f569937465 (diff) | |
download | svg.js-9773661d9321927b5b86feef007fabba68eccf32.tar.gz svg.js-9773661d9321927b5b86feef007fabba68eccf32.zip |
Namespace fixes and added textPath and bumped to v0.270.28
Diffstat (limited to 'src/path.js')
-rw-r--r-- | src/path.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.js b/src/path.js index ef6ab03..3a50703 100644 --- a/src/path.js +++ b/src/path.js @@ -1,7 +1,7 @@ SVG.Path = function(unbiased) { this.constructor.call(this, SVG.create('path')) - this.unbiased = unbiased + this.unbiased = !!unbiased } // Inherit from SVG.Shape |