This commit is contained in:
pichalite
2016-02-22 06:49:35 +00:00
parent d43a45d0b8
commit ca3fa023e8

View File

@@ -394,10 +394,8 @@ define('forum/chats', ['components', 'string', 'sounds', 'forum/infinitescroll',
data.messages.forEach(function(message) {
var self = parseInt(message.fromuid, 10) === parseInt(app.user.uid);
message.self = self ? 1 : 0;
templates.parse('partials/chat_message', {
messages: message
}, function(html) {
var body = components.get('chat/message', message.messageId);
Chats.parseMessage(message, function(html) {
var body = components.get('chat/message', message.messageId);
if (body.length) {
body.replaceWith(html);
components.get('chat/message', message.messageId).find('.timeago').timeago();