jmadler / emoji-picker

Add a slick emoji selector to input fields and textareas on your website.
Other
1.31k stars 318 forks source link

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

Open srrsparky opened 5 years ago

srrsparky commented 5 years ago

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()); }

tinobreg commented 5 years ago

Thanks!