Reputation: 1408
I have a TinyMCE editor instance with a function tied to the onChange event. The onChange is bound in the setup section when initializing the editor.
When the editor is in fullscreen mode the function isn't tied to the onChange event in the new fullscreen editor.
Any ideas of how to bind to events in the fullscreen editor?
Upvotes: 0
Views: 1163
Reputation: 1684
While the recommended method for adding an OnChange event handler is to use the ed.onChange.add() method, if you use the older onchange_callback config setting to define the handler, it is fired in both the normal and fullscreen view.
Upvotes: 3