Skip to content

Instantly share code, notes, and snippets.

@directionforward
Created June 21, 2021 10:42
Show Gist options
  • Save directionforward/e2e5edaa6b330440a779e24171cb0090 to your computer and use it in GitHub Desktop.
Save directionforward/e2e5edaa6b330440a779e24171cb0090 to your computer and use it in GitHub Desktop.
Passive scrollers for jQuery
// Passive event listeners
jQuery.event.special.touchstart = {
setup: function( _, ns, handle ) {
this.addEventListener("touchstart", handle, { passive: !ns.includes("noPreventDefault") });
}
};
jQuery.event.special.touchmove = {
setup: function( _, ns, handle ) {
this.addEventListener("touchmove", handle, { passive: !ns.includes("noPreventDefault") });
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment