Skip to content

Instantly share code, notes, and snippets.

@eduavila
Created October 8, 2015 13:53
Show Gist options
  • Select an option

  • Save eduavila/a7c8dedcd445263c5379 to your computer and use it in GitHub Desktop.

Select an option

Save eduavila/a7c8dedcd445263c5379 to your computer and use it in GitHub Desktop.
$scope.removeItem = function(index){
if(!$scope.pedido.itens.data[index].id){
$scope.pedido.itens.data.splice(index, 1);
}else{
$scope.pedido.itens.data[index]._destroy = true;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment