jQuery-Smart-Auto-Complete icon indicating copy to clipboard operation
jQuery-Smart-Auto-Complete copied to clipboard

IE Click item

Open wyatte opened this issue 14 years ago • 1 comments
trafficstars

In IE selecting an item by mouse clicking the item was not working. I changed this code about line 500 FROM:

$(options.resultsContainer).delegate(options.resultElement, 'click.smart_autocomplete', function () { $(options.context).trigger('itemSelect', [this]); return false });

TO $(options.resultsContainer).delegate(options.resultElement, 'mousedown.smart_autocomplete', function () { $(options.context).trigger('itemSelect', [this]); return false });

wyatte avatar Jul 01 '11 19:07 wyatte

Great, thanks. laktek should pull that.

mreq avatar Apr 08 '12 12:04 mreq