Smooth-Div-Scroll icon indicating copy to clipboard operation
Smooth-Div-Scroll copied to clipboard

Enable vertical Page-Scrolling

Open plain-solutions-gmbh opened this issue 9 years ago • 4 comments

I wish it would be possible to Scrolling the Page by touchscrolling vertical.

plain-solutions-gmbh avatar Jul 27 '15 12:07 plain-solutions-gmbh

me too

kirillovdm avatar Sep 26 '16 13:09 kirillovdm

Any workaround for that?

AlexeyKosov avatar Jan 25 '17 13:01 AlexeyKosov

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

quaywin avatar Mar 22 '17 04:03 quaywin

Oh, thanx, I did it already a long time ago)

On Wed, Mar 22, 2017 at 6:13 AM Thang Nguyen [email protected] 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 .

kirillovdm avatar Mar 22 '17 06:03 kirillovdm