Run Javascript AFTER Angular Has Finished Loading All Views
I am certain that this is not the correct way to do it but....
Putting the below function in my view controller, ran the function after the view had loaded in my application. I believe that the function is run in the next digest cycle following the view load (correct me here if wrong), so it is run once the page is formed.
setTimeout(function(){
//do this after view has loaded :)
console.log('success!');
}, 0);
Its possible you could chain these together via callbacks and/or use an async parallel library to execute another function, after each of the views setTimeouts had returned.
on content loaded:
$rootScope.$on('$includeContentLoaded', function() {
//do your will
});
on content requested:
$rootScope.$on('$includeContentRequested', function() {
//...
});