Reputation: 3315
I have in my app a material menu.
https://material.angular.io/components/menu/overview
I want to prevent closing the menu when I click inside the menu.
Any ideas please?
Link to my:app
Link to my:
Upvotes: 0
Views: 686
Reputation: 1690
You can use Event.stopPropagation() like so.
Event.stopPropagation()
Upvotes: 1