Open gardensgreen opened 4 years ago
This hasn't always happened but please help me understand what is going on.
Did you check in the browser's dev tools' network tab if the backgroundImage (containing the emojis) was loaded successfully?
You can either load them from unpkg (default, https://github.com/scttcper/ngx-emoji-mart#sheet-sizes) or provide a sheet locally by yourself (by setting backgroundImageFn
) https://github.com/scttcper/ngx-emoji-mart#picker.
Same Problem and the sheet gets downloaded too.But the emojis are not showing only picker and tooltips , any other reason other than sheet @Aleeexx
Nope, no clue. I had the problem with emojis not being displayed when I provided a wrong sheet locally...
I would check that other styles are not overriding those in emoji-mart
I had the same problem. My solution was to add the set property to the emoji-mart component and use any option other than emojione.
Before:
<emoji-mart class="emoji-mart" set="emojione" (emojiSelect)="addEmoji($event)" title="Choose your emoji…"></emoji-mart>
Now:
<emoji-mart class="emoji-mart" set="twitter" (emojiSelect)="addEmoji($event)" title="Choose your emoji…"></emoji-mart>
I faced the same problem today. It turns our unpkg
is giving 502 randomly. Since no error is shown by the emoji picker, the user experience is bad. I am going to try and use backgroundImageFn
to load it myself now. Let's see.