mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
23 lines
571 B
HTML
23 lines
571 B
HTML
---
|
|
name: takeAction
|
|
component: $ionicActionSheet
|
|
---
|
|
<ion-header-bar class="bar-positive">
|
|
<h1 class="title">Action</h1>
|
|
</ion-header-bar>
|
|
<ion-content ng-controller="ActionSheetCtrl" class="padding">
|
|
<div class="button button-assertive button-block" ng-click="takeAction()">
|
|
Take Action!
|
|
</div>
|
|
<div class="card" ng-show="messages.length">
|
|
<div class="item item-divider">
|
|
User Log
|
|
</div>
|
|
<div class="item item-text-wrap">
|
|
<div ng-repeat="message in messages">
|
|
{{message.text}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ion-content>
|