roker15

Results 22 comments of roker15

> There are no related options. You can prevent it in the following way: > > ```js > editorInstance.core._setClipboardComponent = function (e) { > e.preventDefault(); > e.stopPropagation(); > return; >...

> ```js > editorInstance.onPaste = (e, cleanData, maxCharCount, core) => { > const dom = core._d.createRange().createContextualFragment(cleanData); > const chilren = dom.childNodes; > let html = ''; > chilren.forEach(v=> { >...