I am new to AngularJS and would like to implement route dependent page transitions. For example, I would like the page to slide left, slide right or fade depending on the ro
Currently my approach to this is to check whether angular is already within a digest cycle or not by using this snippet:
if (!($scope.$$phase)) $scope.$apply();
That's not very pretty, but unfortunately it's the only approach I've discovered so far for exactly the problem you're describing.