Merge pull request #2 from senaduka/time_format_fix

changed format
This commit is contained in:
2015-12-30 07:50:36 +01:00

View File

@@ -11,7 +11,7 @@ if (Meteor.isClient) {
Template.sensorData.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")
}
});
}