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
24 lines (20 loc) • 572 B
HTML
<div role="dialog" aria-label="Eat me!" layout="column" layout-align="center center">
<md-toolbar>
<div class="md-toolbar-tools">
<h2>Surprise!</h2>
</div>
</md-toolbar>
<div class="demo-dialog-content">
<p>
You hit the secret button. Here's a donut:
</p>
<div layout="row" >
<img flex alt="Delicious donut" src="img/donut.jpg">
</div>
</div>
<div layout="row" class="demo-dialog-button">
<md-button md-autofocus flex class="md-primary" ng-click="ctrl.closeDialog()">
Close
</md-button>
</div>
</div>