added timeago and stream to the tag page

This commit is contained in:
maxwell 2011-08-31 21:54:14 -07:00
parent 2e747e814f
commit f5fbaaadcf

View file

@ -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"));
});
};