릴리즈 2.10.0 이상
문서를 편집한 이후 발생합니다.
이벤트 등록: API 사용
var editorId = 'synapEditor'; var editorConfig = {}; var html = ''; var editor = new SynapEditor(editorId, editorConfig, html); editor.setEventListener('afterEdit', function (e) { });
이벤트 등록: 함수방식
var editorId = 'synapEditor'; var editorConfig = {}; var html = ''; function SynapEditorAfterEdit(e) { } new SynapEditor(editorId, editorConfig, html);
이벤트 등록: 에디터 초기화시 등록
var editorId = 'synapEditor'; var editorConfig = {}; var html = ''; var eventListeners = { afterEdit: function (e) { } }; new SynapEditor(editorId, editorConfig, html, eventListeners);
함수로 전달되는 객체 형태
함수로 전달되는 파라미터 e의 형식
e
{ editor: SynapEditor, eventType: 'afterEdit', actionName: 'insertText', // edit action name args: any[], // after 2.15.0, Arguments used for editing. beforeSelection: Selection, // after 2.15.0, Selection before editing. cancelable: false, returnValue: null }