[Client] Fix bug

This commit is contained in:
syuilo 2017-02-19 07:51:51 +09:00
parent 8a84150eea
commit 16b0bb124b

View file

@ -12,6 +12,10 @@ class Autocomplete {
constructor(textarea) {
this.suggestion = null;
this.textarea = textarea;
this.onInput = this.onInput.bind(this);
this.complete = this.complete.bind(this);
this.close = this.close.bind(this);
}
/**