diaspora/public/javascripts/pages/posts-show.js

8 lines
No EOL
261 B
JavaScript

Diaspora.Pages.PostsShow = function() {
var self = this;
this.subscribe("page/ready", function(evt, body) {
self.header = self.instantiate("Header", body.find("header"));
self.stream = self.instantiate("Stream", body.find("#main_stream"));
});
};