19 lines
311 B
JavaScript
19 lines
311 B
JavaScript
import Em from 'ember';
|
|
|
|
export default Em.Component.extend({
|
|
actions: {
|
|
close: function(){
|
|
this.sendAction();
|
|
},
|
|
save: function(){
|
|
this.sendAction();
|
|
},
|
|
selectLight: function(id) {
|
|
console.log('selected ' + id);
|
|
}
|
|
},
|
|
|
|
groupName: null,
|
|
|
|
saveDisabled: false
|
|
});
|