Modified the svg element on the circular progress to not steal pointer events from the inner element it's surrounding.

This commit is contained in:
MattMo 2025-05-15 11:03:43 -07:00
parent cbd8787c89
commit 1f26bf5b18

View File

@ -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()