Merge pull request #115 from eddyystop/master

Correcting a code example.
This commit is contained in:
Leo Horie 2014-05-30 13:47:12 -04:00
commit 5446a39702

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)
])
])
}