Posts by Pedro Mestre Silva • 1 point
1 post
-
0
votes2
answers5596
viewsA: How to run a function after Angularjs renders content in the template?
Try to use the timeout$ to place the function in the browser’s events list. function executaAposRenderizar(){...} app.controller('lista', ['$scope','$timeout', function($scope,$timeout) {…