diff options
Diffstat (limited to 'src/web/app/desktop/scripts')
| -rw-r--r-- | src/web/app/desktop/scripts/autocomplete.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/app/desktop/scripts/autocomplete.js b/src/web/app/desktop/scripts/autocomplete.js index a87a64418e..d32d3d1a73 100644 --- a/src/web/app/desktop/scripts/autocomplete.js +++ b/src/web/app/desktop/scripts/autocomplete.js @@ -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); } /** |