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
In 7a3efa2, stopPropagation was removed because users couldn't intercept key events on their text areas. I think that was a worthwhile change; however, stopPropagation was also removed on the click handler on the view. I want to say that event (and any view event) is something users will never depend on considering it is DOM that they did not initialize themselves. By not stopping it, you have click events bubbling up and causing potential unintended side-effects.
I'm happy to create a pull request if you think this is the correct behavior.
The text was updated successfully, but these errors were encountered:
In 7a3efa2,
stopPropagation
was removed because users couldn't intercept key events on their text areas. I think that was a worthwhile change; however,stopPropagation
was also removed on the click handler on the view. I want to say that event (and any view event) is something users will never depend on considering it is DOM that they did not initialize themselves. By not stopping it, you have click events bubbling up and causing potential unintended side-effects.I'm happy to create a pull request if you think this is the correct behavior.
The text was updated successfully, but these errors were encountered: