1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Innerwiki: make sure we can click through the svg overlays

This commit is contained in:
Jermolene 2019-01-28 19:32:35 +00:00
parent b6d901f888
commit 7f97e3080c

View File

@ -48,6 +48,7 @@ InnerWikiWidget.prototype.render = function(parent,nextSibling) {
domSVG.style = this.innerWikiStyle;
domSVG.style.position = "absolute";
domSVG.style.zIndex = "1";
domSVG.style.pointerEvents = "none";
domSVG.setAttribute("viewBox","0 0 " + this.innerWikiClipWidth + " " + this.innerWikiClipHeight);
domWrapper.appendChild(domSVG);
this.setVariable("namespace","http://www.w3.org/2000/svg");