This commit is contained in:
barisusakli
2016-03-03 13:51:42 +02:00
parent e55168aa11
commit a67f3d2a15
3 changed files with 6 additions and 3 deletions

View File

@@ -376,7 +376,7 @@ define('forum/chats', ['components', 'string', 'sounds', 'forum/infinitescroll',
Chats.onChatEdit();
socket.on('event:chats.roomRename', function(data) {
$('[component="chat/room/name"]').val(data.newName);
$('[component="chat/room/name"]').val($('<div/>').html(data.newName).text());
});
};