From 8e4f4a549c3d8a4b0d212d5619846bdbb4ad684a Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sat, 30 May 2015 12:06:48 +0930 Subject: [PATCH] Re-add event after a discussion has loaded replyAction uses it --- js/forum/src/components/discussion-page.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/forum/src/components/discussion-page.js b/js/forum/src/components/discussion-page.js index 27c516ae6..dcb60d951 100644 --- a/js/forum/src/components/discussion-page.js +++ b/js/forum/src/components/discussion-page.js @@ -87,6 +87,8 @@ export default class DiscussionPage extends mixin(Component, evented) { this.stream = new PostStream({ discussion, includedPosts }); this.stream.on('positionChanged', this.positionChanged.bind(this)); this.stream.goToNumber(m.route.param('near') || 1, true); + + this.trigger('loaded'); } onload(element, isInitialized, context) {