21 lines
353 B
JavaScript
21 lines
353 B
JavaScript
'use strict';
|
|
|
|
(() => {
|
|
// === DOM & VARS =======
|
|
const DOM = {};
|
|
|
|
const LIGHT_PATH_ON = 'assets/img/light_on.png';
|
|
const LIGHT_PATH_OFF = 'assets/img/light_off.png';
|
|
|
|
// === INIT =============
|
|
const init = () => {};
|
|
|
|
// === EVENTHANDLER =====
|
|
|
|
// === XHR/FETCH ========
|
|
|
|
// === FUNCTIONS ========
|
|
|
|
init();
|
|
})();
|