forked from FoundKeyGang/FoundKey
[Client] Fix bug
This commit is contained in:
parent
8a84150eea
commit
16b0bb124b
1 changed files with 4 additions and 0 deletions
|
@ -12,6 +12,10 @@ class Autocomplete {
|
||||||
constructor(textarea) {
|
constructor(textarea) {
|
||||||
this.suggestion = null;
|
this.suggestion = null;
|
||||||
this.textarea = textarea;
|
this.textarea = textarea;
|
||||||
|
|
||||||
|
this.onInput = this.onInput.bind(this);
|
||||||
|
this.complete = this.complete.bind(this);
|
||||||
|
this.close = this.close.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue