jmadler / emoji-picker

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

Conflict with ckeditor #32

Closed rgcarrasqueira closed 8 years ago

rgcarrasqueira commented 8 years ago

Hi! I've tried to use your plugin on my website. But on the same form that I wanna to use emoji, it has also a field with ckeditor set and the field that I want to use now get the settings with ckeditor enabled from the other field. How to avoid this conflict?

Thanks

Rogério

rgcarrasqueira commented 8 years ago

I found a way to fix it, just do:

$(".emoji-wysiwyg-editor").focus(function() { $("#cke_editor1").remove(); });