Skip to content
This repository has been archived by the owner on Nov 27, 2018. It is now read-only.

IE Click item #9

Open
wyatte opened this issue Jul 1, 2011 · 1 comment · Fixed by #22
Open

IE Click item #9

wyatte opened this issue Jul 1, 2011 · 1 comment · Fixed by #22
Labels

Comments

@wyatte
Copy link

wyatte commented Jul 1, 2011

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
});

@mreq
Copy link

mreq commented Apr 8, 2012

Great, thanks. laktek should pull that.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants