I'm invoking an Ember action via a link:
<a {{action "openApps"}}>Apps</a>
and handling it in the appropriate controller
actions: {
openApps: function() {
//...
}
}
How do I get a reference to the <a>
which invoked the action inside the controller-function.