emoji-picker icon indicating copy to clipboard operation
emoji-picker copied to clipboard

Images inserted for an input that is set to unicode and has data

Open srrsparky opened this issue 5 years ago • 1 comments

Fixed by changing the following in the EmojiArea_WYSIWYG function of jquery.emojiarea.js From this.emojiPopup.appendUnicodeAsImageToElement(this.$editor, $textarea.val()); To if ($($textarea).attr('data-emoji-input') === 'unicode') { this.$editor.html($textarea.val()); } else { this.emojiPopup.appendUnicodeAsImageToElement(this.$editor, $textarea.val()); }

srrsparky avatar Sep 21 '18 05:09 srrsparky

Thanks!

tinobreg avatar Dec 04 '18 19:12 tinobreg