You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unsure if @betaWeb still maintains this, but if so:
When clicking on a flash message, this causes the next error: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. Even on the demo/example site.
To fix this, we want to turn removeChild() into remove() so we can properly target all children of the flash container.
I could make a pull request for merging if you'd like? (or fork it anyway?)
The text was updated successfully, but these errors were encountered:
I'm experiencing the same issue on the code in master.zip. Any idea when this will be merged?
To work around the problem, I modified my dist/flash.min.js so that this.$_element.classList.removeChild(this.options.classes.visible) becomes this.$_element.classList.remove(this.options.classes.visible)
Unsure if @betaWeb still maintains this, but if so:
When clicking on a flash message, this causes the next error:
Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.
Even on the demo/example site.To fix this, we want to turn
removeChild()
intoremove()
so we can properly target all children of the flash container.I could make a pull request for merging if you'd like? (or fork it anyway?)
The text was updated successfully, but these errors were encountered: