Continuing with species refactor

This commit is contained in:
Matthew Dillon 2015-07-07 07:30:48 -08:00
parent 622cd0faaf
commit 9aed858982
8 changed files with 99 additions and 60 deletions

View file

@ -0,0 +1,12 @@
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
save: function() {
this.sendAction('save');
},
cancel: function() {
this.sendAction('cancel');
},
}
});