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
clicking away from the search bar should close the popup, but with this extension installed, it doesn't.
some slightly painful experimentation with devtools shows that, yes, the blur event reaches the listener in disable.js before it hits the intended handleBlur listener. I guess this is because of the true argument to addEventListener?
if I'm correctly understanding what that does – "prevent any blur events on any element from reaching the page" – that seems like it would break a lot of things? is there a way to only block blur events that are in some sense attached to "the whole page" rather than a specific individual element?
The text was updated successfully, but these errors were encountered:
somehow this extension breaks gitlab's search box.
repro: head to e.g. https://gitlab.com/gitlab-org/gitlab/-/issues, then click on the search bar. a popup opens:
clicking away from the search bar should close the popup, but with this extension installed, it doesn't.
some slightly painful experimentation with devtools shows that, yes, the
blur
event reaches the listener in disable.js before it hits the intendedhandleBlur
listener. I guess this is because of thetrue
argument toaddEventListener
?if I'm correctly understanding what that does – "prevent any
blur
events on any element from reaching the page" – that seems like it would break a lot of things? is there a way to only blockblur
events that are in some sense attached to "the whole page" rather than a specific individual element?The text was updated successfully, but these errors were encountered: