diy / jquery-emojiarea

A rich textarea control that supports emojis, WYSIWYG-style.
298 stars 87 forks source link

Split Emojis into sections #8

Closed GittiHab closed 9 years ago

GittiHab commented 9 years ago

I downloaded this plugin and noticed three things:

  1. It doesn't contain all icons (I fixed that by downloading JQuery Emoji and writing a short php script to generate that [if you like it just tell me])
  2. There is a small error in the CSS which prevents scrolling in the icon list, add this at the end of the jquery.emojiarea.css
.emoji-menu div {
overflow-x: hidden;
overflow-y: auto;   
}
  1. And I have a question: Can I split up the icons into sections like this Webogram Emojipicker

I quite like this plugin in, nice job 😉

GittiHab commented 9 years ago

I solved this, you can find the solution on my forked repository of this one here