From 5299e1fdc65a486b2c2304a1bd1590acd87bd3bf Mon Sep 17 00:00:00 2001 From: psychobunny Date: Mon, 17 Aug 2015 12:28:16 -0400 Subject: [PATCH] closes #3322 --- public/src/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/src/app.js b/public/src/app.js index 858200e02d..48bb938610 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -241,7 +241,9 @@ app.cacheBuster = null; app.processPage = function () { highlightNavigationLink(); - $('.timeago').timeago(); + $('.timeago').timeago().each(function() { + $(this).attr('title', (new Date($(this).attr('title'))).toString()); + }); utils.makeNumbersHumanReadable($('.human-readable-number'));