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 has been 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.
The text was updated successfully, but these errors were encountered:
In
menu-interim-element.js
there is an invalid comparison in the onclick-handler of themenuContentEl
. Line #157 (058efeb) contains the following check:target
is here a native DOM element, whereasopts.menuContentEl
is a jqLite object. Therefore the comparison is always true. This can lead to an error sincetarget
can now become (in given conditions) equal todocument
, which does not have ahasAttribute
method.The text was updated successfully, but these errors were encountered: