Skip to content

Instantly share code, notes, and snippets.

@rossmartin
Last active December 15, 2015 22:19
Show Gist options
  • Save rossmartin/5332261 to your computer and use it in GitHub Desktop.
Save rossmartin/5332261 to your computer and use it in GitHub Desktop.
// you can set this fix in DOM ready or jQM's mobileinit
// DOM ready
$(function(){
$.event.special.swipe.scrollSupressionThreshold = 100;
});
// jQM defaults
$(document).bind("mobileinit", function(){
$.event.special.swipe.scrollSupressionThreshold = 100;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment