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