...
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.setEventListener('beforePaste', function(data) {
var html = data.clipboardData.htmltext;
// 붙여넣을 DATA 처리
editor.setContentsToPaste('<h1>사이냅에디터</h1>' + data.clipboardData.html);
}); |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.setEventListener('beforePaste', function(data) {
var html = data.clipboardData.htmltext;
// 붙여넣을 DATA 처리
editor.setContentsToPaste('<h1>사이냅에디터</h1>' + data.clipboardData.html);
}); |