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:
parent
cbd8787c89
commit
1f26bf5b18
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user