Put spaces between joined members in group updates

pull/749/head
lilia 10 years ago
parent d435ff003b
commit 0f29cf2043

@ -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(' '));

Loading…
Cancel
Save