jquery-autocomplete
jquery-autocomplete copied to clipboard
Fixed invalid blur when mousedown is hold on resultlist.
Reproducible using the demo/index.html Enter a search and select an item and hold the mouse button. The item is not selected and the list disappears.
This fixes it, tested with IE8, Chromium 28 on Linux, Firefox 22 on Linux.
I fixed this by changing finishOnBlur_ variable to false.
/**
* @property {boolean} Is this autocompleter allowed to finish on blur?
* @private
*/
this.finishOnBlur_ = false;