Correcting a code example.

This commit is contained in:
eddyystop 2014-05-30 13:36:19 -04:00
parent 5b98b9b190
commit 3961d70322

View file

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