From 7f97e3080c72fb045c50f79b2df433c963073adc Mon Sep 17 00:00:00 2001 From: Jermolene Date: Mon, 28 Jan 2019 19:32:35 +0000 Subject: [PATCH] Innerwiki: make sure we can click through the svg overlays --- plugins/tiddlywiki/innerwiki/innerwiki.js | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/tiddlywiki/innerwiki/innerwiki.js b/plugins/tiddlywiki/innerwiki/innerwiki.js index 05c4a148a..b94070b45 100644 --- a/plugins/tiddlywiki/innerwiki/innerwiki.js +++ b/plugins/tiddlywiki/innerwiki/innerwiki.js @@ -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");