You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is basically the same problem as with twitter/typeahead.js#705 except that it specifically only happens in Edge, when the <input> is inside an element with tabindex="-1" (in my case, a bootstrap modal)
Using the Edge browser, run the fiddle, type "a" into the box, then try to grab the scrollbar. It immediately closes. All other browsers (including IE 11) did not have this issue. If you remove the tabindex="-1" attribute from the #hello element, everything works as expected.
For the time being I'm working around this by removing the tabindex from the modal, but this is undesireable in the long run as it allows tab navigation to run off of the modal and onto other elements in the page while the modal is still up.
I'm guessing that the _hacks function might need to be updated to include Edge with the focus/blur hack.
The text was updated successfully, but these errors were encountered:
Hi, reviving this. Latest IE11.0.47 causes a similar problem (released 2017/10/10)
It doesn't matter what the situation is now, it always blurs when clicking the scrollbar.
This is basically the same problem as with twitter/typeahead.js#705 except that it specifically only happens in Edge, when the
<input>
is inside an element withtabindex="-1"
(in my case, a bootstrap modal)I've managed to reliably reproduce the issue with https://jsfiddle.net/2Ljy9c9k/5/
Using the Edge browser, run the fiddle, type "a" into the box, then try to grab the scrollbar. It immediately closes. All other browsers (including IE 11) did not have this issue. If you remove the
tabindex="-1"
attribute from the#hello
element, everything works as expected.For the time being I'm working around this by removing the tabindex from the modal, but this is undesireable in the long run as it allows tab navigation to run off of the modal and onto other elements in the page while the modal is still up.
I'm guessing that the
_hacks
function might need to be updated to include Edge with the focus/blur hack.The text was updated successfully, but these errors were encountered: