Why alert div is not fading out. It's disappearing immediately without any animation
<div ng-show="error!=null && error.key!='undefined' && error.key==0"
ng-animate="'fade'" class="alert alert-success alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>{{error.value}}</strong>
</div>
$timeout(function () {
$scope.error = null;
}, 2000);