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.
I am using a md-menu with a lot of tooltips inside the menu element.
In material version 1.0.0-rc4 it was working fine. Since upgrading to 1.0.1 it is broken.
The tooltips all appear when hovering the button to open the md-menu, but when it is open, no tooltips are shown.
See the demo: http://one-logic.github.io/md-color-menu/
(after opening the menu every color should have a tooltip)
this is the code:
<md-menumd-position-mode="target-right target"><divng-click="vm.openMenu($mdOpenMenu, $event)" ng-transclude=""></div><md-menu-contentclass="md-cm"><div></div><divclass="md-cm-swatches" layout="row"><divng-repeat="swatch in vm.colors" layout=column><divng-repeat="color in swatch" class="md-cm-color" ng-style="color.style" ng-click="vm.selectColor(color)" layout="row" layout-align="center center"><spanng-if="color.name == vm.color.name">✔</span><md-tooltip>{{color.name}}</md-tooltip></div></div></div></md-menu-content></md-menu>