From 1f26bf5b18fda7447f099cfabe41a8855e2dfece Mon Sep 17 00:00:00 2001 From: MattMo Date: Thu, 15 May 2025 11:03:43 -0700 Subject: [PATCH] Modified the svg element on the circular progress to not steal pointer events from the inner element it's surrounding. --- circular-progress.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circular-progress.js b/circular-progress.js index ef27e8f..e6da260 100644 --- a/circular-progress.js +++ b/circular-progress.js @@ -82,6 +82,8 @@ class CircularProgress extends IgniteElement { .style("left", [this.size, this.center], null, (size, center) => center ? `calc(50% - (${size} / 2))` : null) .style("top", [this.size, this.center], null, (size, center) => center ? `calc(50% - (${size} / 2))` : null) .style("position", this.center, true, center => center ? "absolute" : "relative") + .style("pointer-events", "none") + .style("user-select", "none") .show(this.loading) .child( new circle()