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
While using the plugin, the console receives many alerts/suggestions in chrome regarding passive event listeners, and how adding the option would improve scrolling and transitions.
Simple solution is to modify line 29 in the src/handlers.js
from:
target.addEventListener(type, handlers[type]);
to:
target.addEventListener(type, handlers[type],{passive:true});
The text was updated successfully, but these errors were encountered:
While using the plugin, the console receives many alerts/suggestions in chrome regarding passive event listeners, and how adding the option would improve scrolling and transitions.
Simple solution is to modify line 29 in the src/handlers.js
from:
target.addEventListener(type, handlers[type]);
to:
target.addEventListener(type, handlers[type],{passive:true});
The text was updated successfully, but these errors were encountered: