close completion popup when backspacing to empty string

This commit is contained in:
nightwing 2014-09-07 17:22:04 +04:00
commit bd95f782d8

View file

@ -89,6 +89,8 @@ var Autocomplete = function() {
pos.left += renderer.$gutterLayer.gutterWidth;
this.popup.show(pos, lineHeight);
} else if (keepPopupPosition && !prefix) {
this.detach();
}
};