contentco / quill-emoji

Quill module toolbar extension for emoji
275 stars 165 forks source link

feat: Stricter querySelector for toolbar tab changes #165

Open cedricversluys opened 2 years ago

cedricversluys commented 2 years ago

Problem

When switching tabs in the emoji toolbar, it used document.querySelector('.active') to select the tab element. However, this is very generic and caused bugs in my application, because the quill editor is inside another tab view, also using the class name active.

Solution

I added some further specification, to make sure the querySelector always selects the correct element.