Is there a list of supported events for the editor? I’m trying to attach an onBlur event to it , but it is not working.
Hello
Try below:
editor.attachEvent("onAccess",function(eventName,e){
if(eventName == "blur"){
console.log("blur event");
}
});
It will be in documentation soon