szurubooru/client/js/util/handlebars-helpers.js

16 lines
400 B
JavaScript
Raw Normal View History

2016-04-05 17:57:26 +02:00
'use strict';
const handlebars = require('handlebars');
const misc = require('./misc.js');
handlebars.registerHelper('reltime', function(options) {
return new handlebars.SafeString(
'<time datetime="' +
options.fn(this) +
'" title="' +
options.fn(this) +
'">' +
misc.formatRelativeTime(options.fn(this)) +
'</time>');
});