Why TinyMCE get focus and blur event, when user jump from other input field?
问题 Im have a title input field and an tinymce4 textarea. In the tinymce init i defined blur and focus event listeners (coffescript). tinymce.init( $.extend {}, tinyMceDefaultConfig, editor_selector:"tinymce-question" setup: (editor) -> editor .on 'init', (e)..... .on 'focus', -> console.log('focus') .on 'blur', -> console.log('blur') When i go into the tinymce textarea field, it fire only focus event. Works fine. But when i go from the title input field to the tinymce (with mouse event), it fire