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 c56231a commit ab0f584Copy full SHA for ab0f584
apps/webaisummit/app.js
@@ -22,7 +22,7 @@ let draw = function() {
22
var y = g.getHeight() / 2;
23
g.reset().clearRect(Bangle.appRect); // clear whole background (w/o widgets)
24
var date = new Date();
25
- var timeStr = "22:22";//require("locale").time(date, 1); // Hour and minute
+ var timeStr = require("locale").time(date, 1); // Hour and minute
26
g.setFontAlign(0, 0).setFont("WDXLLubrifontTC").drawString(timeStr, x, y);
27
// Show date and day of week
28
var dateStr = require("locale").date(date, 0).toUpperCase()+"\n"+
0 commit comments