Removed some unneeded comments

master
David Volovskiy 2025-04-20 11:10:08 -04:00
parent 3d84679ff5
commit 0a56ee6778
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ let loadJson = function() {
if (vals.steps != null) raw.steps = vals.steps;
jsonText = JSON.stringify(raw, null, 2); // just stringify the object
jsonText = JSON.stringify(raw, null, 2);
lines = jsonText.split("\n");
};
@ -248,7 +248,7 @@ Bangle.on('touch', (zone, e) => {
Bangle.on('backlight', function(on) {
if (on) {
redrawValues(); // or just draw() if you want full re-render
redrawValues();
}
});