Show published date in history details and manual search

New: Hover over age in manual search to see published date
New: Show published date in history details for grab events
This commit is contained in:
Mark McDowall 2014-11-28 23:39:59 -08:00
parent 119677e2dd
commit a83f49ca32
7 changed files with 771 additions and 423 deletions

View file

@ -63,4 +63,12 @@ define(
return moment(input).format(UiSettings.time(false));
});
Handlebars.registerHelper('LTS', function (input) {
if (!input) {
return '';
}
return moment(input).format('LTS');
});
});