I have an odd behavior occurring in CKEdit. I've implemented a character counter using the following code:
editor.document.on('keyup', function() { charCount(editor); }); editor.document.on('paste', function() { charCount(editor); });This works fine... until the user goes to the 'source view'. After that I get no events either in source view or in WYSIWYG view. Is this a known problem, and if so, is there a work-around?
Re: Losing events after 'source' view