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
Apparently, my game is throwing errors saying [Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
I did some research and turns out this can be fix this by adding the passive flag to document.addEventListener for some browsers.
The text was updated successfully, but these errors were encountered:
Apparently, my game is throwing errors saying
[Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
I did some research and turns out this can be fix this by adding the
passive
flag todocument.addEventListener
for some browsers.The text was updated successfully, but these errors were encountered: