Can add emojies on posts

This commit is contained in:
Pierre
2018-04-20 17:03:37 +02:00
parent 3cee773de0
commit 7d7fb2c499
3 changed files with 18 additions and 5 deletions

View File

@ -875,7 +875,7 @@
if (selection.ce) { // if contenteditable
el.focus();
document.execCommand('insertText', false, emo);
el.innerHTML += emo; //COMUNIC EDIT document.execCommand('insertText', false, emo);
} else {
var textBefore = val.substring(0, selection.start);
textBefore = textBefore.replace(/:\S*$/, '')