Put spaces between joined members in group updates

This commit is contained in:
lilia 2015-01-28 22:52:24 -10:00
parent d435ff003b
commit 0f29cf2043
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
messages.push("Title is now '" + this.model.name + "'.");
}
if (this.model.joined) {
messages.push(this.model.joined + ' joined the group');
messages.push(this.model.joined.join(', ') + ' joined the group');
}
this.$el.text(messages.join(' '));