Fix disabling autocomplete and fix completing special channels
This commit is contained in:
parent
f249747642
commit
ff98f31be2
@ -17,7 +17,7 @@ module.exports = {
|
||||
disable() {
|
||||
if (enabled) {
|
||||
input.off("input.tabcomplete");
|
||||
Mousetrap(input.get(0)).off("tab", "keydown");
|
||||
Mousetrap(input.get(0)).unbind("tab", "keydown");
|
||||
textcomplete.destroy();
|
||||
enabled = false;
|
||||
}
|
||||
@ -318,7 +318,7 @@ function completeChans(word) {
|
||||
.each(function() {
|
||||
const self = $(this);
|
||||
|
||||
if (!self.hasClass("lobby")) {
|
||||
if (self.hasClass("channel")) {
|
||||
words.push(self.attr("aria-label"));
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user