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});
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});