Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

md-tooltip does not work together with md-menu #6662

@mathiasmoeller

Description

@mathiasmoeller

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-menu md-position-mode="target-right target">
        <div ng-click="vm.openMenu($mdOpenMenu, $event)" ng-transclude=""></div>
          <md-menu-content class="md-cm">
            <div></div>
            <div class="md-cm-swatches" layout="row">
              <div ng-repeat="swatch in vm.colors" layout=column>
                <div ng-repeat="color in swatch" class="md-cm-color" ng-style="color.style" ng-click="vm.selectColor(color)" layout="row" layout-align="center center">
                  <span ng-if="color.name == vm.color.name">&#10004;</span>
                  <md-tooltip>{{color.name}}</md-tooltip>
                </div>
              </div>
            </div>
          </md-menu-content>
        </md-menu>

Metadata

Metadata

Assignees

No one assigned

    Labels

    P4: minorMinor issues. May not be fixed without community contributions.ux: integration

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions