Commit c25c8eab authored by Weblate's avatar Weblate

Merge remote-tracking branch 'origin/master'

parents 2c049a53 9b3c6d1a
......@@ -39,6 +39,15 @@
expect(info_messages.pop().textContent).toBe('/help: Show this menu');
expect(info_messages.pop().textContent).toBe('/me: Write in the third person');
expect(info_messages.pop().textContent).toBe('/clear: Remove messages');
var msg = $msg({
from: contact_jid,
to: _converse.connection.jid,
type: 'chat',
id: (new Date()).getTime()
}).c('body').t('hello world').tree();
_converse.chatboxes.onMessage(msg);
expect(view.content.lastElementChild.textContent.trim().indexOf('hello world')).not.toBe(-1);
done();
}));
......
......@@ -580,6 +580,7 @@
this.content.insertAdjacentHTML(
'beforeend',
tpl_help_message({
'isodate': moment().format(),
'type': type||'info',
'message': xss.filterXSS(msg, {'whiteList': {'strong': []}})
})
......
<div class="chat-{{{o.type}}}">{{o.message}}</div>
<div class="message chat-{{{o.type}}}" data-isodate="{{{o.isodate}}}">{{o.message}}</div>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment