joehewitt / scrollability

Imitates iOS native scrolling in JavaScript.
http://joehewitt.github.com/scrollability
Other
1.78k stars 147 forks source link

DropKick Plugin not wroking with Scrollability | Mobile scrolling #36

Open jamshoo opened 11 years ago

jamshoo commented 11 years ago

//It seems scrollability hasn't been updated in a while, if you are using dropkick and jquery //this is what I had to do, edit on your scrollability.js file the following:

//Replace: require.ready(function() { document.addEventListener(isTouch ? 'touchstart' : 'mousedown', onTouchStart, false); window.addEventListener('load', onLoad, false); });

//For this:

$(document).ready(function(){ document.addEventListener(isTouch ? 'touchstart' : 'mousedown', onTouchStart, false); window.addEventListener('load', onLoad, false); });

and comment out line 77, 79 and 84 that start with 'export'.