mervick / emojionearea

Emoji Picker Plugin for jQuery
https://jsfiddle.net/mervick/1v03Lqnu/765/
MIT License
956 stars 259 forks source link

Search emoji is case sensitive? Uppercase/mixed case search doesn't work #407

Open sid04naik opened 4 years ago

sid04naik commented 4 years ago

I have implemented the emojiarea picker into my website. The search emoji work only on lowercase letters. Mix cases and uppercase don't work.

sid04naik commented 4 years ago

I found an alternative for this. used the event called "search:keypress" I am converting the capital letter to small.

search_keypress: function() { var _this = this; var small = _this.search.val().toLowerCase(); _this.search.val(small); }