I've found that adding a substantial delay resolves the issue:
$timeout(function () {
$scope.showAlert('Comment Deleted', response);
}, 500); // alert can't be closed unless we delay a bit
I've found that adding a substantial delay resolves the issue:
$timeout(function () {
$scope.showAlert('Comment Deleted', response);
}, 500); // alert can't be closed unless we delay a bit