Closed Mizan-Rifat closed 1 year ago
Can you share a code sample that shows how you are opening the picker?
Here is my integration:
const btn = document.querySelector('.emoji-btn');
const picker = window.picmoPopup.createPopup(
{},
{
referenceElement: btn,
triggerElement: btn,
position: 'bottom-start',
showCloseButton: false
}
);
btn.addEventListener('click', () => {
picker.toggle();
});`
Thank you! I see the issue now, I forgot to update the popup picker to accommodate the prefixed classes!
Once I made that change the positioning should work as expected, can you give the just-released 5.7.4 a try?
Thanks.
When I click on my picker for the first time the popup appears at the left 0 position but after that it works fine. See my attachments...