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
src/leaflet.fusesearch.js
Line 252 listItems[i].remove();
gives an error on my IE11 .remove() not supported
So I changed to get the parent of the node to delete and then delete the child. This works on IE11
src/leaflet.fusesearch.js
Line 252
listItems[i].remove();
gives an error on my IE11 .remove() not supported
So I changed to get the parent of the node to delete and then delete the child. This works on IE11
listItems[i].parentNode.removeChild(listItems[i]);
The text was updated successfully, but these errors were encountered: