mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 21:01:27 -05:00
5 lines
227 B
Text
5 lines
227 B
Text
|
Handlebars.registerHelper('format-age', function(property, options) {
|
||
|
var dt = new Date(Ember.Handlebars.get(this, property, options));
|
||
|
return new Handlebars.SafeString(Discourse.Formatter.autoUpdatingRelativeAge(dt));
|
||
|
});
|