Ember: nested components events bubbling
问题 I've created a set of nested components. The code is here: http://emberjs.jsbin.com/hasehija/2/edit. HTML: {{#level-1}} {{#level-2}} {{#level-3}} <button {{action 'handleAction'}}> Click me (yielded) </button> {{/level-3}} {{/level-2}} {{/level-1}} JS: App.ApplicationController = Ember.Controller.extend({ actions: { handleAction: function() { alert('Handled in ApplicationController'); } } }); App.Level1Component = Ember.Component.extend({ actions: { handleAction: function() { alert('Handled