Call action with correct context

This commit is contained in:
Toby Zerner 2015-04-03 17:00:18 +10:30
parent a238c32429
commit 70c7195690

View File

@ -23,7 +23,7 @@ export default Ember.Component.extend({
if (typeof action === 'string') {
this.sendAction('action');
} else if (typeof action === 'function') {
action();
action.call(this);
}
}
});