angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
17 lines (14 loc) • 507 B
HTML
<md-bottom-sheet class="md-list md-has-header">
<md-subheader ng-cloak>Comment Actions</md-subheader>
<md-list ng-cloak>
<md-list-item ng-repeat="item in items">
<md-button
ng-click="listItemClick($index)"
md-autofocus="$index == 2"
class="md-list-item-content" >
<md-icon md-svg-src="{{item.icon}}"></md-icon>
<span class="md-inline-list-icon-label">{{ item.name }}</span>
</md-button>
</md-list-item>
</md-list>
</md-bottom-sheet>