|
@@ -189,10 +189,11 @@ const EditorComp = defineComponent({
|
|
|
function blurHandle() {
|
|
|
function blur(e: MouseEvent) {
|
|
|
const target = e.target as HTMLElement;
|
|
|
+
|
|
|
if (!editorInstance.value) return;
|
|
|
|
|
|
if (isInCkBodyWrapper(target)) {
|
|
|
- e.stopPropagation();
|
|
|
+ // e.stopPropagation();
|
|
|
return;
|
|
|
}
|
|
|
actions.submitUpdate();
|