zx-editor icon indicating copy to clipboard operation
zx-editor copied to clipboard

在App中,有时键盘不能删除图片

Open netsesame2 opened this issue 7 years ago • 1 comments

已设置

let editor = new ZxEditor("#editorContainer", {
    fixed: false,
    disableBackspaceDelete: false
});

经常出现backspace不能删除图片,不知何故

netsesame2 avatar Nov 02 '18 13:11 netsesame2

content.js // 286行

export function checkContentInnerNull ($content) {
  const $childs = $content.children
  return $childs.length <= 1 && util.isEmpty($content.innerText)
}

innerText 这条判断,在content区域只有图片的时候,就会出现img无法被删除的情况。 改成innerHTML即可。

netsesame2 avatar Nov 03 '18 01:11 netsesame2