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
Since Chrome 51, an event listener can be set as "passive". Passive event listeners were introduced to optimize scrolling performance on a device. When you use a passive event listener on your site, you promise not to use a preventDefault() in that listener to disable scrolling.
This library generates an enormous amount of this warning on every touchStart and touchMove event, since is calling preventDefault without the 'passive' flag on.
Can you just publish a tiny update to fix this? Thank You.
The text was updated successfully, but these errors were encountered:
Since Chrome 51, an event listener can be set as "passive". Passive event listeners were introduced to optimize scrolling performance on a device. When you use a passive event listener on your site, you promise not to use a preventDefault() in that listener to disable scrolling.
This library generates an enormous amount of this warning on every touchStart and touchMove event, since is calling preventDefault without the 'passive' flag on.
Can you just publish a tiny update to fix this? Thank You.
The text was updated successfully, but these errors were encountered: