Reputation: 17272
In Angular 2 ng-bootstrap is it possible to open a bootstrap navbar
ngbDropdown
on hover?
Upvotes: 2
Views: 2527
Reputation: 441
call the opening and closing function on mouse enter event and mouse leave event
(mouseenter)="$event.stopPropagation(); myDrop.open();"
(mouseleave)="$event.stopPropagation(); myDrop.close();"
Upvotes: 3