Update autocomplete.js
Unsubscribe blurListener callback instead of onChange listener in auto complete.
This commit is contained in:
parent
750d38af6f
commit
2cf93d936e
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ var Autocomplete = function() {
|
|||
this.detach = function() {
|
||||
this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
|
||||
this.editor.off("changeSelection", this.changeListener);
|
||||
this.editor.off("blur", this.changeListener);
|
||||
this.editor.off("blur", this.blurListener);
|
||||
this.editor.off("mousedown", this.mousedownListener);
|
||||
this.editor.off("mousewheel", this.mousewheelListener);
|
||||
this.changeTimer.cancel();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue