Files
ionic-framework/demos/actionsheet/script.js
2014-03-31 21:31:57 -05:00

34 lines
702 B
JavaScript

angular.module('ionicApp', ['ionic'])
.controller('AppCtrl', function ($scope, $ionicActionSheet) {
$scope.showActionsheet = function () {
$ionicActionSheet.show({
titleText: 'ActionSheet Example',
buttons: [
{
text: 'Share'
},
{
text: 'Move'
},
],
destructiveText: 'Delete',
cancelText: 'Cancel',
cancel: function () {
console.log('CANCELLED');
},
buttonClicked: function (index) {
console.log('BUTTON CLICKED', index);
return true;
},
destructiveButtonClicked: function () {
console.log('DESTRUCT');
return true;
}
});
};
});