-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Chrome] Drop-down disappear after click on scroll #15
Comments
I didn't look deep the code, but there's something to do on how the self.trigger(self.containerElement().is(':visible') ? EVENT_HIDE_DROPDOWN : EVENT_SHOW_DROPDOWN); is treated. |
it's most likely because a click on the scrollbar defocuses the input in chrome, we've worked around this in other autocompletes by not listening to the blur event on the input, and instead trying to deduce it by listening to clicks on the body element and others |
Cool, I don't know how to fix that, but are you able to reproduce it? |
I'm pretty sure #10 fixes it. - Gerad On Jan 27, 2012, at 3:04 AM, Diego Magalhães wrote:
|
Sounds like a duplicate of #4. I need to review and merge the pull request that fixes it. |
After clicking on the arrow to show the scroll it appears correctly, if try clicking on the scroll the drop-down options disappear.
The text was updated successfully, but these errors were encountered: