How can I find out when ng-view is fully displayed. I am currently trying to use
$scope.$on('$viewContentLoaded', function() { }
$scope.$on('$routeChangeSuccess', function() { }
angular.element(document).ready(function() { }
but it all works while the view is being rendered.
source
share