All vars become consts to prevent redeclaration during this rewrite (and they should be that anyway)

This commit is contained in:
mmcwilliams 2019-03-21 15:43:03 -04:00
parent f5f23284a3
commit bfb9bcbbe4
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
var devices = {};
const devices = {};
devices.init = function () {
'use strict';

View File

@ -1,4 +1,4 @@
var light = {};
const light = {};
//LIGHT
light.preview_state = false; //light is on/off for preview viewing

View File

@ -1,4 +1,4 @@
var log = {};
const log = {};
log.time = 'MM/DD/YY-HH:mm:ss';
log.count = 0;

View File

@ -1,4 +1,4 @@
var mse = {};
const mse = {};
/******
Mscript GUI

View File

@ -1,4 +1,4 @@
var nav = {};
const nav = {};
//NAV
nav.active = 'sequencer';

View File

@ -1,4 +1,4 @@
var proj = {};
const proj = {};
proj.queue = {};
proj.lock = false;