Is there a way to send a parameter, like ex: editor.close('whatever') when the editor closes and catch this parameter in editor.on('close', function (e, data, action) {
Apreciate your help
No sorry. You'd need to do something like:
var myVariable = 1; editor.on( 'close', function () { // use myVariable } ); editor.close();
Allan
Answers
No sorry. You'd need to do something like:
Allan