Skip to content
Snippets Groups Projects
Commit 33758947 authored by syuilo's avatar syuilo
Browse files

[Client] Refactor: Improve readability

parent 5e5986f5
No related branches found
No related tags found
No related merge requests found
......@@ -10,12 +10,14 @@ class Autocomplete {
* 対象のテキストエリアを与えてインスタンスを初期化します。
*/
constructor(textarea) {
// BIND ---------------------------------
this.onInput = this.onInput.bind(this);
this.complete = this.complete.bind(this);
this.close = this.close.bind(this);
// --------------------------------------
this.suggestion = null;
this.textarea = textarea;
this.onInput = this.onInput.bind(this);
this.complete = this.complete.bind(this);
this.close = this.close.bind(this);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment