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

Description
Hello Team,
with the latest version the button click isn't working anymore in WP8 on in list items
The problem seems like that the two-button rendering causing wired issues in WP.
<md-list-item aria-label="filter" no-padding ng-click="doSomething()">
<p>Filter</p>
<md-icon md-svg-icon="image:navigate_next"></md-icon>
</md-list-item>
The render output looks like:
<md-list-item role="listitem" class="_md-button-wrap md-clickable" tabindex="-1">
<button class="md-button _md-no-style">
<button class="_md-no-style md-button" type="button" ng-transclude="" md-no-focus-style="" ng-click="doSomething()">
</button>
<div class="_md-list-item-inner">
<div layout="column" class="layout-column">
...
</div>
</div>
</button>
</md-list-item>
Update: I think the problem is that the outer button triggers but not the inner button, and the event is lost cause of this.
Greetings & Thanks
Graphefruit