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 Sep 5, 2024. It is now read-only.
In menu-interim-element.js there is an invalid comparison in the onclick-handler of the menuContentEl. Line #157 (058efeb) contains the following check:
target is here a native DOM element, whereas opts.menuContentEl is a jqLite object. Therefore the comparison is always true. This can lead to an error since target can now become (in given conditions) equal to document, which does not have a hasAttribute method.