├── $ionicActionSheet └── takeAction │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── $ionicLoading └── complete │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── $ionicPopup └── popping │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── .gitignore ├── CNAME ├── README.md ├── collectionRepeat └── contacts │ ├── contacts.css │ ├── contacts.html │ ├── contacts.js │ ├── index-ionic-demo-app.js │ ├── index.html │ └── test.scenario.js ├── index-ionic-demo-app.js ├── index.html ├── ionCheckbox └── simple │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionFooterBar └── simple │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionHeaderBar └── simple │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionInfiniteScroll └── forever │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionList ├── animated │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ ├── style.css │ └── test.scenario.js └── reorderDelete │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionRadio └── chooseOne │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionRefresher └── refreshList │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionSideMenus ├── navWithMenu │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js └── simple │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionSlideBox └── appIntro │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ ├── style.css │ └── test.scenario.js ├── ionTabs └── tabsAndNav │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── ionic ├── css │ ├── ionic.css │ └── ionic.min.css ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── js │ ├── angular-ui │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ ├── angular │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-resource.js │ │ ├── angular-resource.min.js │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular.js │ │ └── angular.min.js │ ├── ionic-angular.js │ ├── ionic-angular.min.js │ ├── ionic.bundle.js │ ├── ionic.bundle.min.js │ ├── ionic.js │ └── ionic.min.js └── version.json ├── itemFloatingLabel └── floatingLabel │ ├── index-ionic-demo-app.js │ ├── index.html │ ├── index.js │ └── test.scenario.js ├── nightly ├── $ionicActionSheet │ └── takeAction │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── $ionicLoading │ └── complete │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── $ionicPopup │ └── popping │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── collectionRepeat │ └── contacts │ │ ├── contacts.css │ │ ├── contacts.html │ │ ├── contacts.js │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ └── test.scenario.js ├── index-ionic-demo-app.js ├── index.html ├── ionCheckbox │ └── simple │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionFooterBar │ └── simple │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionHeaderBar │ └── simple │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionInfiniteScroll │ └── forever │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionList │ ├── animated │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ ├── style.css │ │ └── test.scenario.js │ └── reorderDelete │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionRadio │ └── chooseOne │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionRefresher │ └── refreshList │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionSideMenus │ ├── navWithMenu │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js │ └── simple │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionSlideBox │ └── appIntro │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ ├── style.css │ │ └── test.scenario.js ├── ionTabs │ └── tabsAndNav │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js ├── ionic │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── js │ │ ├── angular-ui │ │ │ ├── angular-ui-router.js │ │ │ └── angular-ui-router.min.js │ │ ├── angular │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular.js │ │ │ └── angular.min.js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ └── version.json ├── itemFloatingLabel │ └── floatingLabel │ │ ├── index-ionic-demo-app.js │ │ ├── index.html │ │ ├── index.js │ │ └── test.scenario.js └── pages-data.js └── pages-data.js /$ionicActionSheet/takeAction/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 |

Action

25 |
26 | 27 |
28 | Take Action! 29 |
30 |
31 |
32 | User Log 33 |
34 |
35 |
36 | {{message.text}} 37 |
38 |
39 |
40 |
41 | 42 |
43 |