mircobabini
7/18/2014 - 2:34 PM

Adds the toggleDelete ability to the current $scope, useful when working with $ionicListDelegate

Adds the toggleDelete ability to the current $scope, useful when working with $ionicListDelegate

$scope.toggleDelete = function(){
  if( $ionicListDelegate.showDelete() ){
    $ionicListDelegate.showDelete(false);
  }else{
    $ionicListDelegate.showDelete(true);
  }
}