Merge pull request #2410 from joe1chen/add-topics-loaded-event

Add topics.loaded event to be triggered when new topics are loaded by infinite scroll.
v1.18.x
Julian Lam 10 years ago
commit 95e3c6f8a4

@ -36,6 +36,7 @@ define('forum/account/topics', ['forum/account/header', 'forum/infinitescroll'],
html.find('span.timeago').timeago();
app.createUserTooltips();
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
$(window).trigger('action:topics.loaded');
callback();
});
}

@ -104,6 +104,7 @@ define('forum/recent', ['forum/infinitescroll'], function(infinitescroll) {
html.find('span.timeago').timeago();
app.createUserTooltips();
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
$(window).trigger('action:topics.loaded');
callback();
});
};

Loading…
Cancel
Save