$ionicListDelegate.closeOptionButtons()angular.module('ionicApp', ['ionic'])
.controller('MyCtrl',function($scope,$ionicListDelegate){
$scope.data = {showDelete:false};
$scope.edit =function(item){
alert('Edit Item: '+ item.id);
};
$scope.share =function(item){
alert('Share Item: '+ item.id);$ionicListDelegate.closeOptionButtons();// this closes swipe option buttons after alert};
$scope.moveItem =function(item, fromIndex, toIndex){
$scope.items.splice(fromIndex,1);
$scope.items.splice(toIndex,0, item);
};
$scope.delItem =function(item){
$scope.items
...
继续阅读
(10)