Is there a way to get a callback when Ember.js has finished loading everything?

ember.js

Solution

There are also several functions defined on Views that can be overloaded and which will be called automatically. These include `willInsertElement()`, `didInsertElement()`, `afterRender()`, etc.

In particular I find `didInsertElement()` a useful time to run code that in a regular object-oriented system would be run in the constructor.

Problem

I am building an Ember.js app and I need to do some additional setup after everything is rendered/loaded. Is there a way to get such a callback? Thanks!

Original source