Evented#trigger()

trigger (name, args) public

Defined in packages/ember-runtime/lib/mixins/evented.js:104

Triggers a named event for the object. Any additional arguments will be passed as parameters to the functions that are subscribed to the event.

person.on('didEat', function(food) {
  console.log('person ate some ' + food);
});

person.trigger('didEat', 'broccoli');

// outputs: person ate some broccoli

Parameters:

name String
The name of the event
args Object...
Optional arguments to pass on
doc_EmberJs
2016-11-30 16:52:06
Comments
Leave a Comment

Please login to continue.