From 2ad26b938511d5237919f3b42bb5af0495f4a595 Mon Sep 17 00:00:00 2001 From: Alex Cheuk Date: Sat, 14 Jun 2014 18:51:02 -0700 Subject: [PATCH] Fixed inheritance_pattern example error --- partials/10_inheritance_pattern.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(){