Calling a function when ng-repeat has finished

What I am trying to implement is basically a “on ng repeat finished rendering” handler. I am able to detect when it is done but I can’t figure out how to trigger a function from it. Check the fiddle:http://jsfiddle.net/paulocoelho/BsMqq/3/ JS var module = angular.module(‘testApp’, []) .directive(‘onFinishRender’, function () { return { restrict: ‘A’, link: function … Read more