0
I would like to call a function after Angularjs renders the content in the template, just as it removes the display:none
when using the ng-cloak
.
function executaAposRenderizar(){...}
app.controller('lista', ['$scope', function($scope) {
$scope.itens = [...]
// executaAposRenderizar();
}])
How to call a function after Angularjs has printed the content in the template?