hardlounge/client/js/libs/handlebars/tz.js

18 lines
235 B
JavaScript
Raw Normal View History

2014-07-24 00:16:00 +00:00
Handlebars.registerHelper(
"tz", function(time) {
2016-03-11 20:14:15 +00:00
time = new Date(time);
var h = time.getHours();
var m = time.getMinutes();
if (h < 10) {
h = "0" + h;
2014-09-27 19:17:05 +00:00
}
2016-03-11 20:14:15 +00:00
if (m < 10) {
m = "0" + m;
}
return h + ":" + m;
2014-07-24 00:16:00 +00:00
}
);