# 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 :(
)
コンテキストで渡すことができることを知っています。しかし、実際のイベントを取得する方法があるかどうか知りたいです。