Prevent dragging if the mouse is on a scroll bar. #2
Loading…
Reference in a new issue
No description provided.
Delete branch "patch-1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
unfortunately this doesn't work
I added this simple IF-statement to prevent selectable behaviour on scrollbars:
(...)
_mouseStart: function (event) {
var t = event.target;
if (event.pageX > t.clientWidth + t.offsetLeft){
return false;
}
(...)
A good call here, it has been upgraded and added to the code. Thank you :)
Pull request closed