Skip to content

Commit 8102969

Browse files
committed
Linter fixes
1 parent f6629aa commit 8102969

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/daisy/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ function drawAllRings(date, drawOnlyThisType) {
514514
let ring = settings.rings[i];
515515
if (ring.type == "None") continue;
516516
if (drawOnlyThisType != null && ring.ring != drawOnlyThisType) continue;
517-
result = getGaugeImage(date, ring.ring, ring.step_target);
517+
var result = getGaugeImage(date, ring.ring, ring.step_target);
518518
drawIfChanged(result[0], result[1], result[2], i, ring.type);
519519
}
520520
}
@@ -816,7 +816,7 @@ Bangle.on('step', s => {
816816
warned = 0;
817817
if (drawingSteps) return;
818818
var steps = getSteps();
819-
ret = checkRedrawSteps(steps);
819+
var ret = checkRedrawSteps(steps);
820820
if (!ret[0] && !ret[1]) return;
821821
drawingSteps = true;
822822
if (ret[0]) drawSteps();

0 commit comments

Comments
 (0)