There are quite a few questions on how to implement item removal inside ngRepeat directive, and as I figured out, it comes down to using ngClick and triggering
You could create a generic remove method that would take in the array and the item to remove.
{{ email }} Remove {{ phone }} Remove $scope.remove = function(array, index){ array.splice(index, 1); }