minor stuff

This commit is contained in:
lone-cloud 2017-02-06 23:52:04 -08:00
parent 6c199f5d07
commit 712ad552f5
4 changed files with 10 additions and 38 deletions

View file

@ -13,22 +13,8 @@ const {
export default Component.extend({
classNames: ['container-fluid'],
elementId: 'hue-controls',
lightsData: {
1: {
modelid: 'LCT001',
name: 'light 1',
state: {
reachable: true
}
},
2: {
name: 'teeeeeeeeeest',
modelid: 'LCT002',
state: {
reachable: true
}
}
},
lightsData: null,
activeLights: A(),
tabList: ["Lights", "Music"],
selectedTab: 1,

View file

@ -382,10 +382,10 @@
var adapter = function ( dancer ) {
var context;
if('webkitAudioContext' in window) {
context = new webkitAudioContext();
} else {
if('AudioContext' in window) {
context = new AudioContext();
} else {
context = new webkitAudioContext();
}
this.dancer = dancer;

View file

@ -14,22 +14,8 @@ const {
export default Component.extend({
classNames: ['container-fluid'],
elementId: 'hue-controls',
lightsData: {
1: {
modelid: 'LCT001',
name: 'light 1',
state: {
reachable: true
}
},
2: {
name: 'teeeeeeeeeest',
modelid: 'LCT002',
state: {
reachable: true
}
}
},
lightsData: null,
activeLights: A(),
tabList: ["Lights", "Music"],
selectedTab: 1,

View file

@ -382,10 +382,10 @@
var adapter = function ( dancer ) {
var context;
if('webkitAudioContext' in window) {
context = new webkitAudioContext();
} else {
if('AudioContext' in window) {
context = new AudioContext();
} else {
context = new webkitAudioContext();
}
this.dancer = dancer;