| Status |
|---|
| |
|---|
| colour | Yellow |
|---|
| title | 릴리즈 Release 2.10.0 이상 |
|---|
|
붙여넣기 후에 발생합니다.
...
This event occurs after pasting.
Adding Event: Using API
| Code Block |
|---|
|
var editorId = 'synapEditor';
var editorConfig = {};
var html = '';
var editor = new SynapEditor(editorId, editorConfig, html);
editor.setEventListener('afterPaste', function (e) {
}); |
...
Adding Event:
...
Function
| Code Block |
|---|
|
var editorId = 'synapEditor';
var editorConfig = {};
var html = '';
function SynapEditorAfterPaste(e) {
}
new SynapEditor(editorId, editorConfig, html); |
...
Adding Event: When the Editor is initialized
| Code Block |
|---|
|
var editorId = 'synapEditor';
var editorConfig = {};
var html = '';
var eventListeners = {
afterPaste: function (e) {
}
};
new SynapEditor(editorId, editorConfig, html, eventListeners); |
함수로 전달되는 객체 형태
...
Object Delivered through Functions
In the form of parameter e delivered through functions
| Code Block |
|---|
|
{
editor: SynapEditor,
eventType: 'afterPaste',
cancelable: false,
returnValue: null
} |
...