Is there a way to implement a loader that appears when the page starts changing and only disappears once the entire page is fully rendered to prevent clipping bugs?
I have already set up the loader as shown below:
$scope.$on('$routeChangeStart', function(scope, next, current) {
$rootScope.$broadcast('START_ROUTE_CHANGE');
});
Appreciate any help. Thank you.