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