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.
I hope I have specified this correctly as I'm pretty new to all this Angular stuff (and web dev in general) but I have been playing around with the MenuController in an attempt to create a context menu (which I know is a whole other issue!! https://github.com/angular/material/issues/3493).
While messing around with the code I noticed that in the disableHoverListener function it tries to unregister 2 event handlers:
handleMenuItemHover
handleMenuMouseLeave
except that "handleMenuMouseLeave" should be "handleMenuItemMouseLeave" (see function enableHoverListener for the corresponding handler registrations which are correct)
The text was updated successfully, but these errors were encountered:
There was a typo in the hover deregistration code which attempted
to deregister an non-existent function. Fix by adding `Item` to
the handler.
Fixesangular#7947.
Hi all,
I hope I have specified this correctly as I'm pretty new to all this Angular stuff (and web dev in general) but I have been playing around with the MenuController in an attempt to create a context menu (which I know is a whole other issue!! https://github.com/angular/material/issues/3493).
While messing around with the code I noticed that in the disableHoverListener function it tries to unregister 2 event handlers:
except that "handleMenuMouseLeave" should be "handleMenuItemMouseLeave" (see function enableHoverListener for the corresponding handler registrations which are correct)
The text was updated successfully, but these errors were encountered: