$scope.deleteService = function(index, event)
{
$scope.selectedCategory.services[index].deleteStatus = false;
if(confirm("Вы уверены, что хотите удалить сервис?"))
{
$scope.selectedCategory.services[index].deleteStatus = true;
return false;
}