Skip to content

Commit

Permalink
fix another incorrect code in UiComponent.waterfallDown
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Apr 18, 2012
1 parent 116846b commit e4a21ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/kernel/UiComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ enyo.kind({
// waterfall to all pure components
for (var n in this.$) {
if (!(this.$[n] instanceof enyo.UiComponent)) {
this.$[n].waterfall(inMessageName, inMessage, inSender);
this.$[n].waterfall(inMessage, inPayload, inSender);
}
}
// waterfall to my children
Expand Down

0 comments on commit e4a21ec

Please sign in to comment.