StevenDevooght / tinyMCE-mention

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

Fix Keycode Issue in Firefox #34

Closed ryanpatrickcook closed 7 years ago

ryanpatrickcook commented 8 years ago

In firefox, lookup is getting triggered when going back (left arrow) through content and doing lookup when it hits a space. The issue was because e.which was 0 which was failing back to e.keyCode which was 37 and String.fromCharCode(37) equaled our delimiter which was a '%'

StevenDevooght commented 8 years ago

Thanks for this one.