1
0
Fork 0

Update settings.js

Switch from const to let
master
stweedo 2023-05-07 14:52:00 -05:00 committed by GitHub
parent e88198dd11
commit ff94b814c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
(function (back) {
const LOC = "shadowclk.json";
const SYS = "setting.json";
const teletextColors = ["#000", "#f00", "#0f0", "#ff0", "#00f", "#f0f", "#0ff", "#fff"];
const teletextColorNames = ["Black", "Red", "Green", "Yellow", "Blue", "Magenta", "Cyan", "White"];
let LOC = "shadowclk.json";
let SYS = "setting.json";
let teletextColors = ["#000", "#f00", "#0f0", "#ff0", "#00f", "#f0f", "#0ff", "#fff"];
let teletextColorNames = ["Black", "Red", "Green", "Yellow", "Blue", "Magenta", "Cyan", "White"];
// Load and set default settings
let appSettings = Object.assign({
@ -81,4 +81,4 @@
}
// Initially show the menu
showMenu();
});
});