diff --git a/client/js/chat.js b/client/js/chat.js index fbe074a..2e597c0 100644 --- a/client/js/chat.js +++ b/client/js/chat.js @@ -384,6 +384,11 @@ $(function() { .each(function() { words.push($(this).text().replace(/[+%@~]/, "")); }); + var channels = sidebar.find(".channel") + .each(function() { + var chan = $(this).clone().remove("span").text().trim(); + words.push(chan); + }); return $.grep( words, function(w) {