We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81f468 commit c2962bbCopy full SHA for c2962bb
apps/ateatimer/app.js
@@ -3,7 +3,7 @@
3
let appRect = Bangle.appRect;
4
let middleY = appRect.y+appRect.w/2;
5
let middleRect = {x:appRect.x, y:middleY-20, w:appRect.w, h:40}
6
-let GREEN = g.theme.dark?0x03E0:0x07E0;
+let GREEN = g.theme.dark?0x07E0:0x03E0;
7
8
let intervalID;
9
@@ -75,7 +75,7 @@ function startTimer() {
75
g.reset();
76
77
// Start the secondary timer to update the display
78
- intervalID = setInterval(updateDisplay, 1000);
+ setTimeout('setintervalID = setInterval(updateDisplay, 1000);', 1000);
79
}
80
81
function scheduleTimer() {
0 commit comments