In jquery when you specify a click handler for a button, you can refer to this to get the button that was clicked.  However, when you use {{action blah}} this refers to the controller.  Is there any way to get that button without having to query for it?   Not that it's hard to do $("#myButton") just curious...
App.MyController = Em.Controller.extend({
    buttonClicked:function() {
        //this.?
    }
})