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
It would be great to have a on('dragstart', function(){..}) event so when user is dragging you can change cursor pointer to grabbing for example.
on('dragstart', function(){..})
grabbing
The text was updated successfully, but these errors were encountered:
There are already events which are reused by dragscrol, namely mousedown, mousemove and mouseup. Are they suitable for your purposes?
mousedown
mousemove
mouseup
This can also be done via CSS:
.dragscroll:active { cursor : -webkit-grabbing; cursor : -moz-grabbing; cursor : -o-grabbing; cursor : grabbing; }
Sorry, something went wrong.
However, .dragscroll:active is not working in Firefox (tested with 50.1.0) while using dragscroll.js.
.dragscroll:active
This problem persists so far. 😢
Has anyone solved it in any way?
@asvd @krlicmuhamed @m-vo
No branches or pull requests
It would be great to have a
on('dragstart', function(){..})
event so when user is dragging you can change cursor pointer tograbbing
for example.The text was updated successfully, but these errors were encountered: