Skip to content

Commit

Permalink
Merge pull request #42 from mmoats/patch-1
Browse files Browse the repository at this point in the history
Fix character count update
  • Loading branch information
w8tcha committed Dec 22, 2013
2 parents cf39f8c + 36e58d7 commit 8af045f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wordcount/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ CKEDITOR.plugins.add('wordcount', {
counterElement(editorInstance).className = "cke_wordcount";
}

editor.on('key', function (event) {
editor.on('change', function (event) {

updateCounter(event.editor);
}, editor, null, 100);
Expand Down

0 comments on commit 8af045f

Please sign in to comment.