All vars become consts to prevent redeclaration during this rewrite (and they should be that anyway)
This commit is contained in:
parent
f5f23284a3
commit
bfb9bcbbe4
|
@ -1,4 +1,4 @@
|
|||
var devices = {};
|
||||
const devices = {};
|
||||
|
||||
devices.init = function () {
|
||||
'use strict';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var light = {};
|
||||
const light = {};
|
||||
|
||||
//LIGHT
|
||||
light.preview_state = false; //light is on/off for preview viewing
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var log = {};
|
||||
const log = {};
|
||||
|
||||
log.time = 'MM/DD/YY-HH:mm:ss';
|
||||
log.count = 0;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var mse = {};
|
||||
const mse = {};
|
||||
|
||||
/******
|
||||
Mscript GUI
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var nav = {};
|
||||
const nav = {};
|
||||
|
||||
//NAV
|
||||
nav.active = 'sequencer';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var proj = {};
|
||||
const proj = {};
|
||||
|
||||
proj.queue = {};
|
||||
proj.lock = false;
|
||||
|
|
Loading…
Reference in New Issue