diff options
author | wout <wout@impinc.co.uk> | 2014-02-04 11:47:17 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-02-04 11:47:17 +0100 |
commit | f22fe6d271879e232508c1fed1f9c8fbec604ade (patch) | |
tree | 49fcb3c69bab594762a6cb2a7901e68a489f5734 /src/textpath.js | |
parent | 5c9f99f1be78ec827da79c55ea6ed8561626e4d6 (diff) | |
download | svg.js-f22fe6d271879e232508c1fed1f9c8fbec604ade.tar.gz svg.js-f22fe6d271879e232508c1fed1f9c8fbec604ade.zip |
Removing old unbiassed flag on textPath path creation
Diffstat (limited to 'src/textpath.js')
-rwxr-xr-x | src/textpath.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textpath.js b/src/textpath.js index 9f7b088..0ee9d77 100755 --- a/src/textpath.js +++ b/src/textpath.js @@ -23,7 +23,7 @@ SVG.TextPath = SVG.invent({ this.node.appendChild(this.textPath.node) /* create path in defs */ - this.track = this.doc().defs().path(d, true) + this.track = this.doc().defs().path(d) /* create circular reference */ this.textPath.parent = this |