From 78ce5ebf210db1c3a9ef3f61ecee04137a7632bd Mon Sep 17 00:00:00 2001 From: Patrick Levy Date: Wed, 1 Apr 2015 09:19:39 -0500 Subject: [PATCH 1/5] small change to readme file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76763b8..527aabf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -FEATURES +INCLUDED FEATURES ------- * √ - Teacher logs in and creates a "chatter" topic. * √ - Teacher distributes a short code for the "chatter" topic to students. From e9c092c88b3a9ea5095323816ed28f2bcd2bdd0a Mon Sep 17 00:00:00 2001 From: Patrick Levy Date: Wed, 8 Apr 2015 18:51:28 -0500 Subject: [PATCH 2/5] Bug fix for missing username in home view --- packages/login/client/templates.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/login/client/templates.html b/packages/login/client/templates.html index 46f4388..de84963 100644 --- a/packages/login/client/templates.html +++ b/packages/login/client/templates.html @@ -36,8 +36,8 @@ {{else}} -

Hello, {{userName}}.

- Not {{userName}}? Sign out. +

Hello, {{currentUser.profile.name}}.

+ Not {{currentUser.profile.name}}? Sign out.
Jump to Chatter Topics
From 3c24eab2637d4744fe8ec52fbfe8a03db38801ec Mon Sep 17 00:00:00 2001 From: Patrick Levy Date: Thu, 9 Apr 2015 20:30:57 -0500 Subject: [PATCH 3/5] bug fix - incorrect profile name display --- client/views/dashboard/dashboard.html | 2 +- packages/login/client/templates.html | 4 ++-- packages/utils/utils.js | 7 ++++++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/client/views/dashboard/dashboard.html b/client/views/dashboard/dashboard.html index a393f47..42196c5 100644 --- a/client/views/dashboard/dashboard.html +++ b/client/views/dashboard/dashboard.html @@ -1,6 +1,6 @@