In enyo.js, what is the difference between waterfall and waterfalldown event ?
Asked
Active
Viewed 129 times
1 Answers
1
waterfall
will send the event starting with the component where you call it (i.e., this.waterfall(...) will send the event to whatever this is) and waterfallDown
skips that level and sends to all the components it contains.
There are also bubble
and bubbleUp
which behave similarly but in the opposite direction.

Webby Vanderhack
- 889
- 7
- 13