Skip to content

Commit

Permalink
Merge pull request summernote#496 from nsb/patch-1
Browse files Browse the repository at this point in the history
Fixed IE change events syntax
  • Loading branch information
lqez committed Jul 17, 2014
2 parents 0679acc + f9ad7d0 commit 9bf33e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/EventHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ define([
};

if (agent.isMSIE) {
var sDomEvents = 'DOMCharacterDataModified, DOMSubtreeModified, DOMNodeInserted';
var sDomEvents = 'DOMCharacterDataModified DOMSubtreeModified DOMNodeInserted';
oLayoutInfo.editable.on(sDomEvents, hChange);
} else {
oLayoutInfo.editable.on('input', hChange);
Expand Down

0 comments on commit 9bf33e5

Please sign in to comment.