Browse: Home » 【AngularJS】ngRepeatが完了したタイミングでコールバックを呼びたい。 ので調べてみた。 安定のstackさん。ありがとうございます。 http://stackoverflow.com/questions/15207788/calling-a-function-when-ng-repeat-has-finished まず、ngRepeatの終了を検知するディレクティブを定義。 var module = angular.module('testApp', []) .directive('onFinishRender', function ($timeout) { return { restrict: 'A', link: function (scope, element, attr) { if (scope.$last === true) { $t