Merge branch 'master' into fix-vendors

This commit is contained in:
Julian Lam
2016-04-04 18:46:24 -04:00
610 changed files with 7299 additions and 3194 deletions

View File

@@ -242,7 +242,7 @@ define('forum/chats', ['components', 'string', 'sounds', 'forum/infinitescroll',
if (data.users && data.users.length) {
data.users.forEach(function(user) {
tagEl.tagsinput('add', user.username);
tagEl.tagsinput('add', $('<div/>').html(user.username).text());
});
}
@@ -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());
});
};