[Proto-Scripty] Re: Event.stop with two observers on same object

2009-06-17 Thread T.J. Crowder
> Maybe a clarifying line in the docs would help here, > e.g. I'm with you; open a ticket on Lighthouse[1] and assign it to me? [1] https://prototype.lighthouseapp.com/projects/8886-prototype/overview -- T.J. :-) On Jun 17, 8:33 am, steffenb wrote: > OK, I read those two points on Event#stop,

[Proto-Scripty] Re: Event.stop with two observers on same object

2009-06-17 Thread steffenb
OK, I read those two points on Event#stop, but still believed Event#stop would prevent any further event processing, as the method name indicates. Maybe a clarifying line in the docs would help here, e.g. Note: further observers on the same element will be called despite Event#stop. Steffen On

[Proto-Scripty] Re: Event.stop with two observers on same object

2009-06-16 Thread T.J. Crowder
Hi, Interesting question. It's the expected behavior. The documentation [1] says that Event#stop will: * Prevent further bubbling of the event * Prevent the default behavior of the event (where the browser allows it) Not triggering other observers doesn't fall under either of those categories