Fixed copy event on disabled editor
This commit is contained in:
parent
0afdaa557f
commit
6a3434c889
@ -14,6 +14,7 @@ function cledit(contentElt, scrollEltOpt, isMarkdown = false) {
|
|||||||
cledit.Utils.createEventHooks(editor);
|
cledit.Utils.createEventHooks(editor);
|
||||||
const debounce = cledit.Utils.debounce;
|
const debounce = cledit.Utils.debounce;
|
||||||
|
|
||||||
|
contentElt.setAttribute('tabindex', '0'); // To have focus even when disabled
|
||||||
editor.toggleEditable = (isEditable) => {
|
editor.toggleEditable = (isEditable) => {
|
||||||
contentElt.contentEditable = isEditable == null ? !contentElt.contentEditable : isEditable;
|
contentElt.contentEditable = isEditable == null ? !contentElt.contentEditable : isEditable;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user