slider
slider copied to clipboard
stopPropagation breaks blur() events elsewhere
Steps to reproduce:
Given: I have an input (unrelated to rc-slider), and a <Slider>
element
- Click into the input. Expected: cursor blinks in input, focus is on input
- Click the slider drag handle Expected: a blur() event is called on the input Actual: no blur() event is called
I suspect this is because stopPropagation is called here. What is the reason for this call?
I will gladly open a PR to resolve this problem, but before I do it would be best for me to understand the problem that stopProgation
is solving.
Thanks!