1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Handlebars/Helpers/DateTime.js

18 lines
439 B
JavaScript
Raw Normal View History

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