Skip to content

Commit ab0f584

Browse files
committed
remove placeholder time
1 parent c56231a commit ab0f584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webaisummit/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let draw = function() {
2222
var y = g.getHeight() / 2;
2323
g.reset().clearRect(Bangle.appRect); // clear whole background (w/o widgets)
2424
var date = new Date();
25-
var timeStr = "22:22";//require("locale").time(date, 1); // Hour and minute
25+
var timeStr = require("locale").time(date, 1); // Hour and minute
2626
g.setFontAlign(0, 0).setFont("WDXLLubrifontTC").drawString(timeStr, x, y);
2727
// Show date and day of week
2828
var dateStr = require("locale").date(date, 0).toUpperCase()+"\n"+

0 commit comments

Comments
 (0)