Dummy measurement edit

This commit is contained in:
Matthew Dillon 2015-09-16 09:12:13 -07:00
parent fa6507be66
commit 40f2b789e4
6 changed files with 93 additions and 14 deletions

View file

@ -0,0 +1,17 @@
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'tr',
isEditing: false,
actions: {
edit: function() {
this.toggleProperty('isEditing');
},
save: function() {
this.toggleProperty('isEditing');
console.log('saved');
}
},
});