Angular: event for digest completed and view updated
问题 is there an event to listen when the view is updated? Is it related to digest completed, should I listen to this and how? For example there is a view that outputs in div itemDetail: <div id="itemDetail">{{titleOriginal}}</div> and corresponding controller: .controller('ItemDetailController', function($scope) { $scope.titleOriginal = "..."; alert(angular.element("#itemDetail").html()); }) Now this alert would throw {{titleOriginal}} instead of evaluated value "...". So I guess I should first