Wondered what's the best way to detect the finish of page loading/bootstrapping, when all directives done compiling/linking.
Any event already there? Should I overload the bootstrap function?
Angular hasn't provided a way to signal when a page finished loading, maybe because "finished" depends on your application. For example, if you have hierarchical tree of partials, one loading the others. "Finish" would mean that all of them have been loaded. Any framework would have a hard time analyzing your code and understanding that everything is done, or still waited upon. For that, you would have to provide application-specific logic to check and determine that.