jmadler / emoji-picker

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

No open emoji picker on iOS device #152

Closed VeeRHunter closed 4 years ago

VeeRHunter commented 4 years ago

I was made my own emoji picker and then it is not open emoji part on iOS device. Code is exactly same as current one, I am not sure why this happened

bLeveque42 commented 4 years ago

If you look at the source code, it was deactivated by default on iOS.

The reason is most likely because the iOS keyboard already offers emojis.

If you want to modify this behavior and show the plugin on iOS, in emoji-picker.js comment this block:

if (isiOS) {
     return;
}
VeeRHunter commented 4 years ago

Okay, thanks. let me check