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
Hi the last version generate an error in lighthouse :
Does not use passive listeners to improve scrolling performance
More info here : https://web.dev/uses-passive-event-listeners/?utm_source=lighthouse&utm_medium=devtools
The text was updated successfully, but these errors were encountered:
FYI just change thoses lines:
this._map._container.addEventListener("touchstart", this._handleTouch); this._map._container.addEventListener("touchmove", this._handleTouch); this._map._container.addEventListener("touchend", this._handleTouch); this._map._container.addEventListener("touchcancel", this._handleTouch); this._map._container.addEventListener("click", this._handleTouch);
to
this._map._container.addEventListener("touchstart", this._handleTouch, {passive: true}); this._map._container.addEventListener("touchmove", this._handleTouch, {passive: true}); this._map._container.addEventListener("touchend", this._handleTouch, {passive: true}); this._map._container.addEventListener("touchcancel", this._handleTouch, {passive: true}); this._map._container.addEventListener("click", this._handleTouch, {passive: true});
Sorry, something went wrong.
No branches or pull requests
Hi the last version generate an error in lighthouse :
Does not use passive listeners to improve scrolling performance
More info here : https://web.dev/uses-passive-event-listeners/?utm_source=lighthouse&utm_medium=devtools
The text was updated successfully, but these errors were encountered: