Open
Description
Weired bug. Checked on Chrome wihtout extantions and safari.
<ContentEditable
className='esup_editor_text'
innerRef={editorRef}
autoFocus
onChange={(evt) => {
handles.updateContent(evt.currentTarget.innerHTML)
}}
onBlur={() => {
console.log('blur');
}}
html={editorData.text || ''} />
Paste event works fine, if i copied text inside ContentEditable and some other html. But i copied it from url adress for example, i wont paste it in. I try to use
onPaste={(evt) => {
evt.preventDefault();
const text = evt.clipboardData.getData('text/plain');
document.execCommand('insertHTML', false, text);
}}
And it start working! But the problem that now if i try to paste text which. have copied inside ContentEditable it paste it twice.
It also wont work when i right click, paste...
Metadata
Assignees
Labels
No labels
Activity