Hi,
In Microsoft Edge the onChange event does not seem to be fired when I click on the buttons (bold, italic etc.). It works fine in IE, FF, Chrome.
See here: https://jsfiddle.net/mldxpt/Lr3xdepk/
Changing text to bold or italic does not trigger the onChange event in Edge
Microsoft Edge
Summernote 0.8.7
Confirmed misbehavior... sadly. We'll try to understand what's happening with MSEdge. Thanks for reporting, @mldxpt.
For older versions look for the follwoing code in the summernote.js where the editor is initialized
var changeEventName = agent.isMSIE ? 'DOMCharacterDataModified DOMSubtreeModified DOMNodeInserted' : 'input';
and change it to
var changeEventName = (agent.isMSIE || agent.isEdge) ? 'DOMCharacterDataModified DOMSubtreeModified DOMNodeInserted' : 'input';
Fixed by #2583
Most helpful comment
Confirmed misbehavior... sadly. We'll try to understand what's happening with MSEdge. Thanks for reporting, @mldxpt.