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 c138ba0 commit c7ae986Copy full SHA for c7ae986
apps/smartbatt/clkinfo.js
@@ -43,10 +43,10 @@
43
44
//update clock info according to batt state
45
if (Bangle.isCharging()) {
46
- return { text: batt+"%", img : img};
+ return { text: batt+"%", img };
47
}
48
else{
49
- return { text: getHrsFormatted(data.hrsLeft), img : img};
+ return { text: getHrsFormatted(data.hrsLeft), img };
50
51
},
52
@@ -66,7 +66,7 @@
66
get : () => {
67
drawBatt()
68
var data=require("smartbatt").get();
69
- return { text: data.avgDrainage.toFixed(2)+"/h", img : img};
+ return { text: data.avgDrainage.toFixed(2)+"/h", img };
70
71
72
show : function() {
0 commit comments