fix #2190 autocomplete doesn't show tooltip when list initially appears

This commit is contained in:
nightwing 2014-10-25 03:25:44 +04:00
commit 1a70ef15e2

View file

@ -67,6 +67,7 @@ var Autocomplete = function() {
e.stop();
}.bind(this));
this.popup.focus = this.editor.focus.bind(this.editor);
this.popup.on("show", this.tooltipTimer.bind(null, null));
this.popup.on("select", this.tooltipTimer.bind(null, null));
this.popup.on("changeHoverMarker", this.tooltipTimer.bind(null, null));
return this.popup;