triggerAction (opts) Booleanprivate
 Defined in packages/ember-runtime/lib/mixins/target_action_support.js:44 
 Send an action with an actionContext to a target. The action, actionContext and target will be retrieved from properties of the object. For example: App.SaveButtonView = Ember.View.extend(Ember.TargetActionSupport, {
  target: Ember.computed.alias('controller'),
  action: 'save',
  actionContext: Ember.computed.alias('context'),
  click() {
    this.triggerAction(); // Sends the `sav