StevenDevooght / tinyMCE-mention

Mention/Autocomplete plugin for tinyMCE WYSIWYG editor.
http://stevendevooght.github.io/tinyMCE-mention/
220 stars 95 forks source link

Fixed bug where last highlighted item was being added #70

Closed PaulRyan17 closed 6 years ago

PaulRyan17 commented 6 years ago

Found and fixed a small bug.

Steps to reproduce:

  1. Trigger the mention list
  2. Highlight any item using the directional arrows
  3. Continue typing until no items match your query so the list is no longer showing
  4. Press the Enter Key
  5. The last highlighted item will be added

Expected Result: Pressing enter should leave the text as is and exit selection

I added a line of code in plugin.js that when the list is being removed that the active class it also removed from the item.

StevenDevooght commented 6 years ago

Thx! 👍

PaulRyan17 commented 6 years ago

Thanks for giving me my first ever pull request!