Andrey Izman
Andrey Izman
Seems there is some error with `keypress` event, you can use `keyup` instead https://jsfiddle.net/2s9dhks8/1/
ref https://github.com/mervick/emojionearea/issues/30
It's not a bug, it's a how textcomplete plugin works, you can create a new issue with this new feature, but it does not related to this issue
Sorry, but not, there is no solution yet
Hi Daniel, seems there is a bug :anguished: User events binded before plugin's events I fix this now.
I don't know why, but currently only with `keyup` event you can get actual contents ``` js keyup: function (editor, event) { console.log("keyup text: " + this.getText()); console.log("keyup text: "...
It does not compatible with new version yet.
Yes, but it is not on first line. Currently I am making redesign of code and fixing many bugs
Try this: load joypixels on your page, and then ```js window.emojione = window.joypixels; $("#emojionearea").emojioneArea({ useInternalCDN: false }); ```
Change this line https://github.com/mervick/emojionearea/blob/dc73dc556fdc6e82c5d26847533b893ece255ce1/dist/emojionearea.js#L31 to ```js var emojione = window.joypixels; ``` and make sure you don't call `$.fn.emojioneArea()` before `joypixels` is loaded