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);
}
}