ToDo: * Fix failing posts cuke, seems to be timing issue * Populate stream title when no aspects selected * All aspects selected by default?
9 lines
No EOL
377 B
JavaScript
9 lines
No EOL
377 B
JavaScript
Diaspora.Pages.AspectsIndex = function() {
|
|
var self = this;
|
|
|
|
this.subscribe("page/ready", function(evt, document) {
|
|
self.aspectNavigation = self.instantiate("AspectNavigation", document.find("ul#aspect_nav"));
|
|
self.stream = self.instantiate("Stream", document.find("#aspect_stream_container"));
|
|
self.infiniteScroll = self.instantiate("InfiniteScroll");
|
|
});
|
|
}; |