1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-01 00:45:18 +02:00
Files
Sonarr/UI/Handlebars/Helpers/DateTime.js

18 lines
439 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
define(
[
2013-06-24 21:43:16 -07:00
'handlebars',
'sugar'
2013-06-24 21:43:16 -07:00
], function (Handlebars) {
Handlebars.registerHelper('ShortDate', function (input) {
if (!input) {
return '';
}
2013-06-24 21:43:16 -07:00
var date = Date.create(input);
var result = '<span title="' + date.full() + '">' + date.short() + '</span>';
2013-06-24 21:43:16 -07:00
return new Handlebars.SafeString(result);
});
});