From f5fbaaadcf5d3c42167143b7598ff0c536b3706f Mon Sep 17 00:00:00 2001 From: maxwell Date: Wed, 31 Aug 2011 21:54:14 -0700 Subject: [PATCH] added timeago and stream to the tag page --- public/javascripts/pages/tags-show.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/javascripts/pages/tags-show.js b/public/javascripts/pages/tags-show.js index 293c8d76c..82aa1c3c7 100644 --- a/public/javascripts/pages/tags-show.js +++ b/public/javascripts/pages/tags-show.js @@ -1,7 +1,9 @@ Diaspora.Pages.TagsShow = function() { var self = this; - this.subscribe("page/ready", function() { + this.subscribe("page/ready", function(evt, document) { + self.stream = self.instantiate("Stream", document.find("#stream_container")); self.infiniteScroll = self.instantiate("InfiniteScroll"); + self.instantiate("TimeAgo", document.find("abbr.timeago")); }); };