From e6d16172684ae3c41b8c7b83c6248fc16545ed20 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Thu, 1 Sep 2011 10:52:07 -0700 Subject: [PATCH] added timeago to notifications page. @ohaibbq, this is getting annoying :P --- public/javascripts/pages/notifications-index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/javascripts/pages/notifications-index.js b/public/javascripts/pages/notifications-index.js index ade507196..f66c9adfd 100644 --- a/public/javascripts/pages/notifications-index.js +++ b/public/javascripts/pages/notifications-index.js @@ -3,5 +3,6 @@ Diaspora.Pages.NotificationsIndex = function() { this.subscribe("page/ready", function(evt, document) { self.infiniteScroll = self.instantiate("InfiniteScroll"); + self.instantiate("TimeAgo", document.find("abbr.timeago")); }); };