I have code such as that shown below, and I’m just wondering how I can trigger another event within the route’s events. Thoughts?
App.MyRoute = Ember.Route.extend({
events: {
eventOne: function() {
// do something
},
eventTwo: function() {
// how do I call eventOne() here?
},
}
});
You can just call
events.eventOne()usingthisas the context: