diff --git a/partials/10_inheritance_pattern.html b/partials/10_inheritance_pattern.html index 8327b47..145c6ca 100644 --- a/partials/10_inheritance_pattern.html +++ b/partials/10_inheritance_pattern.html @@ -36,10 +36,10 @@

Implement inheritence pattern using Class.js utility

_notesModel:null, init:function($scope,NotesModel,Notifications,$route){ - this._super($scope) this._notifications = Notifications; this._notesModel = NotesModel; this._notesModel.loadSlides(); + this._super($scope); }, defineListeners:function(){