-
Notifications
You must be signed in to change notification settings - Fork 165
ie8-ie9 Blur event fires when scrolling list #37
Comments
The same problem for me. Please reply if you plan fix it... Thnx. |
At the end what I did is removing the line that hides the list, so I really didnt fix it but at least it worked better for my puposes this way ... |
I think this issue connected with this one: #9 |
Try my patched version: |
A fix for the Typoworx-de Patch: Instead: USE: This fixes problem when user clicks in one select and then click in another one. The patch closes the last one. |
This worked really well for me. Thanks |
Blur event is firing and hiding
in ie8 and ie9 when user tries to scroll down the list.
Any solution to this? Im trying a lot of options but cant find the right way to do it.
This is the code at fancySelect.js, but I dont know how to detect when the user is still on the same html object :
sel.on('blur', function(e) {
if (trigger.hasClass('open')) {
return setTimeout(function() {
return trigger.trigger('close');
}, 120);
}
});
The text was updated successfully, but these errors were encountered: