We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
great source i have a question Click on the slide to slide up. I do not want this action. What JavaScript should I fix? Thanks Warm Regards
The text was updated successfully, but these errors were encountered:
@maddack I had a same issue. I solved it by commenting out below.
// in bundle.js var bindMouseDrag = function() { function isScrollable(element) { return element.parents( '.' + options.scrollabelArea ).length != 0 ; } var x, y; // window.onmousedown = function(e) { // var cancelOn = ['a','input','textarea','select']; // if( $.inArray( e.target.nodeName.toLowerCase(), cancelOn ) != -1 && isScrollable( $(e.target) ) ) { // cancel = true; // } else { // y = e.y; // cancel = false; // } // } window.onmouseup = function(e) { if( e.y > ( y+options.mouseSwipeDisance && !cancel ) ) { app.slideUp(); } else if( e.y < ( y-options.mouseSwipeDisance && !cancel ) ) { app.slideDown(); } } };
FYI: I found out the point that fire when mouse was down. https://www.tutorialspoint.com/How-to-find-out-which-JavaScript-events-fired I checked a whole mouse event in the debugger.
thanks.
Sorry, something went wrong.
No branches or pull requests
great source
i have a question
Click on the slide to slide up.
I do not want this action.
What JavaScript should I fix?
Thanks
Warm Regards
The text was updated successfully, but these errors were encountered: