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
The indexing in removeDomNodes is incorrect - as the nodes are removed the nodes.length decreases meaning it will remove half the nodes expected. The nodes list is an HTMLCollection which is a live reflection on the parents children.
The indexing in removeDomNodes is incorrect - as the nodes are removed the nodes.length decreases meaning it will remove half the nodes expected. The nodes list is an HTMLCollection which is a live reflection on the parents children.
This could be changed to:
So should also work if a plain array is passed in...
The text was updated successfully, but these errors were encountered: