-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable vertical Page-Scrolling #197
Comments
me too |
Any workaround for that? |
I found solution on this #78 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 ***@***.***> wrote:
I found solution on this #78
<#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
<#197 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMA3fkyM0oAJPtE7lYdM82V0aZkm7IpIks5roKADgaJpZM4FgWlt>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wish it would be possible to Scrolling the Page by touchscrolling vertical.
The text was updated successfully, but these errors were encountered: