fix typo in components docs

This commit is contained in:
Leo Horie 2014-03-22 17:38:53 -04:00
parent 72b6604cbc
commit 08798bd6af

View file

@ -24,10 +24,10 @@ dashboard.controller = function() {
dashboard.view = function(ctrl) { dashboard.view = function(ctrl) {
return m("#example", [ return m("#example", [
m(".profile", [ m(".profile", [
new userProfile.view(this.userProfile); new userProfile.view(ctrl.userProfile);
]), ]),
m(".projects", [ m(".projects", [
new projectList.view(this.projectList); new projectList.view(ctrl.projectList);
]) ])
]) ])
} }