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/controls/lights-modal-control.js
2015-08-12 16:45:39 -07:00

13 lines
185 B
JavaScript

import Em from 'ember';
export default Em.Component.extend({
actions: {
clickLight: function(){
this.sendAction();
}
},
modalData: null,
lightsApiURL: null
});