remove textPath now working

main
Mark MacKay 2021-07-14 10:36:11 -05:00
parent 8df83b3ee7
commit 2f8c3f1af9
1 changed files with 1 additions and 1 deletions

View File

@ -7557,7 +7557,7 @@ this.getTextPath = function(elem){
const textPath = elem.querySelector("textPath");
var path = null;
if (textPath) {
const href = textPath.getAttribute("href");
const href = getHref(textPath);
const id = href.replace("#", "");
path = svgroot.getElementById(id);
}