-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confusing cancelBubble #74
Comments
This issue is super old, not sure if relevant anymore. |
We haven't actually answered this satisfactorily. It also helps me remember that we have a general issue that our event delegation system is under-designed. |
Is this still relevant given that |
On Sun, Mar 16, 2014 at 2:08 PM, Addy Osmani [email protected]:
|
Just to be clear preventDefault is unrelated to event propagation (a lot of
|
Fixes #74. The `finalize` technique used in Polymer.Element is not am…
The code seems to have some strange behavior related to
cancelBubble
in the event handlers.For example if I have two functions listening to the same event on the same target and the first one calls
event.stopPropagation()
the second one should still be called.I don't understand what the intent is by checking
cancelBubble
. Did you mean to checkdefaultPrevented
?The text was updated successfully, but these errors were encountered: