Refactor characteristics/show

This commit is contained in:
Matthew Dillon 2015-11-05 13:46:29 -07:00
parent 9715aac1f5
commit 31c4ff4d52
6 changed files with 95 additions and 72 deletions

View file

@ -0,0 +1,14 @@
import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
characteristic: null,
"on-delete": null,
actions: {
deleteCharacteristic: function() {
return this.attrs['on-delete']();
},
},
});