I have a simple angular app with mdMenu at the bottom of the page. When you select an option, the page scrolls up. This only happens in firefox (tested on version 52.0.2).
Using angular ver. 1.6.4 Using angular material ver 1.1.3
Plnkr
<body>
<div style="height:1000px">This is top</div>
<md-menu md-position-mode="target-right target">
<md-button aria-label="Open demo menu" class="md-raised md-primary" ng-click="$mdOpenMenu($event)">
Menu
</md-button>
<md-menu-content width="2">
<md-menu-item>
<md-button>
<div>
<p flex>
Option </p>
</div>
</md-button>
</md-menu-item>
</md-menu-content>
</md-menu>
</body>
source
share