Closed regmish closed 8 years ago
I have a big parent container which scrolls vertically, it works fine. But in the middle of the div there is another child container which scrolls horizontally. When I reach that child container and try to scroll up the parent container I cannot . I just want to bubble up the mouseup event on the child container towards parent container. How can I achieve this? please help
If you set the dragscroll
class for the parent container, and not for the child container, it should work as described (until there is a bug in dragscroll). Do you have a simple online demo where this can be reproduced?
yeah, fixed above issue, with propagating event on mouse move
I'm wondering if it's not propagated by default
yeah, just commented out a single line and its working like a charm
which line?
line no 48 e.stopPropagation()
eventually this issue has already been fixed some commits ago and released in v0.0.6
I have two containers : one is parent which scrolls vertically and inside parent there is another horizontal scrolling div. when I reach child container with horizontal scrolling vertical scrolling does not work.