We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting this error when closing a window in IE8. Problem appears to be with
preventDefault: function(/*Event*/ e) { if (e.preventDefault) { e.preventDefault(); } else { e.returnValue = false; } }
in DomEvent.js.
The text was updated successfully, but these errors were encountered:
Update on this one. The error is being triggered in _onCloseButtonClick() in PopUp.js, which calls L.DomEvent.stop(),
stop: function(e) { L.DomEvent.preventDefault(e); L.DomEvent.preventDefault(e); },
Both preventDefault and preventDefault are getting returned as undefined when using the minified leaflet.js file.
Sorry, something went wrong.
Oops, I'll check it out, seems like a trivial bug...
6dd915a
mourner
No branches or pull requests
Getting this error when closing a window in IE8. Problem appears to be with
in DomEvent.js.
The text was updated successfully, but these errors were encountered: