Render emoji in group name in group updates
// FREEBIE
This commit is contained in:
parent
4652c2cff3
commit
ff490994ab
1 changed files with 3 additions and 1 deletions
|
@ -105,7 +105,9 @@
|
|||
renderControl: function() {
|
||||
if (this.model.isEndSession() || this.model.isGroupUpdate()) {
|
||||
this.$el.addClass('control');
|
||||
this.$('.content').text(this.model.getDescription());
|
||||
var content = this.$('.content');
|
||||
content.text(this.model.getDescription());
|
||||
emoji_util.parse(content);
|
||||
} else {
|
||||
this.$el.removeClass('control');
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue