# in the handlebars template
{{action "do_something" target="view"}}
# in the view
APP.view = Ember.View.extend(
do_something: (evt) ->
console.log evt #this used to contain a javascript event object, it was useful at times :(
)
I know I can pass in a context. But I want to know if there is a way to get the actual event.