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
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
No sorry. You'd need to do something like:
Allan