Move pm_list.set_click_handlers() call.

Instead of calling it from stream_list.initialize(), we
call it from the new pm_list.initialize().
This commit is contained in:
Steve Howell
2017-06-14 13:58:51 -04:00
parent 39e8bed9ef
commit 29416c4b39
3 changed files with 4 additions and 2 deletions

View File

@@ -207,6 +207,9 @@ exports.update_dom_with_unread_counts = function (counts) {
};
exports.initialize = function () {
pm_list.set_click_handlers();
};
return exports;
}());