ionic-angular
Version:
[](https://circleci.com/gh/driftyco/ionic)
32 lines (22 loc) • 828 B
HTML
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Ionic Actionsheet</title>
<link href="http://code.ionicframework.com/nightly/css/ionic.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script src="http://code.ionicframework.com/nightly/js/ionic.bundle.min.js"></script>
<script type="text/javascript" charset="utf-8" src="script.js"></script>
</head>
<body ng-controller="AppCtrl">
<ion-header-bar class="bar-positive">
<h1 class="title">Action Sheet</h1>
</ion-header-bar>
<ion-content class="has-header padding">
<button class="button" ng-click="showActionsheet()">
Show Actionsheet
</button>
</ion-content>
</body>
</html>