marko-js-archive / marko-widgets

[LEGACY] Module to support binding of behavior to rendered UI components rendered on the server or client
http://v3.markojs.com/docs/marko-widgets/
MIT License
141 stars 40 forks source link

implement standard event bubbling methods for use with declarative bindings #97

Closed yomed closed 8 years ago

yomed commented 9 years ago

For the custom event delegation that is implemented in declarative bindings, we should support standard methods related to event bubbling, such as:

event.stopPropagation()
event.stopImmediatePropagation()

There are also older properties like event.cancelBubble which we probably don't need to worry about.

patrick-steele-idem commented 8 years ago

New version published with event.stopPropagation() support: marko-widgets@5.2.3

Thank you, @1N50MN14, for the PR!