fixed time format

This commit is contained in:
Senad Uka
2015-12-27 07:41:18 +01:00
parent 0db0eda1b6
commit 89877bbe65

View File

@@ -11,7 +11,7 @@ if (Meteor.isClient) {
Template.temperature.helpers({
created_at_formatted: function() {
return moment(this.created_at).format("DD.MM.YYYY, HH:MM")
return moment(this.created_at).format("DD.MM.YYYY, hh:mm")
}
});
}