This commit is contained in:
Vanessa 2022-10-31 15:52:01 +08:00
parent a252068365
commit fc85a72a1b
2 changed files with 7 additions and 2 deletions

View File

@ -575,8 +575,8 @@ export const dropEvent = (protyle: IProtyle, editorElement: HTMLElement) => {
document.onmouseup = null;
});
editorElement.addEventListener("drop", async (event: DragEvent & { target: HTMLElement }) => {
if (event.dataTransfer.getData(Constants.SIYUAN_DROP_EDITOR)) {
// 编辑器内选中文字拖拽
if (protyle.disabled || event.dataTransfer.getData(Constants.SIYUAN_DROP_EDITOR)) {
// 只读模式/编辑器内选中文字拖拽
event.preventDefault();
event.stopPropagation();
return;

View File

@ -1267,6 +1267,11 @@ export class WYSIWYG {
});
this.element.addEventListener("paste", (event: ClipboardEvent & { target: HTMLElement }) => {
if (protyle.disabled) {
event.stopPropagation();
event.preventDefault();
return;
}
window.siyuan.ctrlIsPressed = false; // https://github.com/siyuan-note/siyuan/issues/6373
// https://github.com/siyuan-note/siyuan/issues/4600
if (event.target.tagName === "PROTYLE-HTML") {