I have seen in EmberJS code and discussion {no references supplied} the following:
Code
route.js
setupController: function (controller, model) {
this._super(controller,model);
// More code
},
Questions
What is the call to this._super(controller,model);
doing here?
When should I need to use this type of call?
Just trying to learn here as my nose bleeds from the Ember learning curve.