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
{{ message }}
This repository was archived by the owner on Feb 16, 2026. It is now read-only.
In the file useRootClose.tsline91 you're using the fragile and deprecatedwindow.event global event handler. This is causing issues with browser engines that have followed standards deprecation and disabled this by default, leading to subtle errors and unexpected behaviour (without throwing) on sites that make use of this component.
The solution should be straightforward: use the event passed into the event handler instead (a cursory glance seems to indicate that that is e in this case?
To Reproduce
Steps to reproduce the behaviour:
Switch of window.event support (e.g. in Firefox, pref it off)
Describe the bug
In the file
useRootClose.tsline91 you're using the fragile and deprecatedwindow.eventglobal event handler. This is causing issues with browser engines that have followed standards deprecation and disabled this by default, leading to subtle errors and unexpected behaviour (without throwing) on sites that make use of this component.The solution should be straightforward: use the event passed into the event handler instead (a cursory glance seems to indicate that that is
ein this case?To Reproduce
Steps to reproduce the behaviour:
ALTon the imageReproducible Example
see above
Expected behaviour
It should pop up a tooltip but the event is lost (often, but sometimes not).
Environment (please complete the following information)
Additional context
This bug was discovered by one of our users (Kris_88) on our forum. Full context in this thread:
https://forum.palemoon.org/viewtopic.php?f=70&t=32635