You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you are dragging the scroll-handle and the mouse leaves the window. the dragging stops. This is unexpected, as normal scroll-bars do not exhibit this behavior.
It can be fixed in the enscroll.js code by attaching the 'mouse-move' and 'mouse-up' event-handlers to the window-element instead of the body-element (and commenting out the explicit 'on mouse-out end drag' event-handlers). So far I have not encountered any problems with this modification.
The text was updated successfully, but these errors were encountered:
I found that the above modification disabled dragging on IE8, but making the modification conditional on "('onmousemove' in window)" solved that problem.
When you are dragging the scroll-handle and the mouse leaves the window. the dragging stops. This is unexpected, as normal scroll-bars do not exhibit this behavior.
It can be fixed in the enscroll.js code by attaching the 'mouse-move' and 'mouse-up' event-handlers to the window-element instead of the body-element (and commenting out the explicit 'on mouse-out end drag' event-handlers). So far I have not encountered any problems with this modification.
The text was updated successfully, but these errors were encountered: