Open plain-solutions-gmbh opened 9 years ago
me too
Any workaround for that?
I found solution on this https://github.com/tkahn/Smooth-Div-Scroll/issues/78 By the way, you should edit kinetic plugin file by commenting e.preventDefault(); line.
touchMove: function (e){
var touch;
if (self.mouseDown){
touch = e.originalEvent.touches[0];
self._inputmove(touch.clientX, touch.clientY);
if (e.preventDefault){
// e.preventDefault();
}
}
}
Oh, thanx, I did it already a long time ago)
On Wed, Mar 22, 2017 at 6:13 AM Thang Nguyen notifications@github.com wrote:
I found solution on this #78 https://github.com/tkahn/Smooth-Div-Scroll/issues/78 By the way, you should edit kinetic plugin file by commenting e.preventDefault(); touchMove: function (e){ var touch; if (self.mouseDown){ touch = e.originalEvent.touches[0]; self._inputmove(touch.clientX, touch.clientY); if (e.preventDefault){ // e.preventDefault(); } } }
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/tkahn/Smooth-Div-Scroll/issues/197#issuecomment-288293934, or mute the thread https://github.com/notifications/unsubscribe-auth/AMA3fkyM0oAJPtE7lYdM82V0aZkm7IpIks5roKADgaJpZM4FgWlt .
I wish it would be possible to Scrolling the Page by touchscrolling vertical.