Fixed draft newline
This commit is contained in:
parent
a68d55ee57
commit
99db226265
@ -850,7 +850,7 @@ MessageComposer.prototype.setValue = function (text) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
MessageComposer.prototype.getRichHtml = function (text) {
|
MessageComposer.prototype.getRichHtml = function (text) {
|
||||||
return $('<div>').text(text).html().replace(/:([A-Za-z0-9\-\+\*_]+?):/gi, (function (all, shortcut) {
|
return $('<div>').text(text).html().replace(/\n/g, '<br/>').replace(/:([A-Za-z0-9\-\+\*_]+?):/gi, (function (all, shortcut) {
|
||||||
var code = EmojiHelper.shortcuts[shortcut];
|
var code = EmojiHelper.shortcuts[shortcut];
|
||||||
if (code !== undefined) {
|
if (code !== undefined) {
|
||||||
return this.getEmojiHtml(code);
|
return this.getEmojiHtml(code);
|
||||||
|
Loading…
Reference in New Issue
Block a user