This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
huegasm/app/components/modals/add-group-modal.js

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
});