✏️ Fix typo 1b3a9c903b

This commit is contained in:
Daniel 2024-05-01 12:06:38 +08:00
parent 1b3a9c903b
commit 91864e9b5d
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -1,17 +1,13 @@
import {
focusBlock,
focusByRange,
focusByWbr,
getSelectionOffset,
setLastNodeRange
} from "../util/selection";
import {focusBlock, focusByRange, focusByWbr, getSelectionOffset, setLastNodeRange} from "../util/selection";
import {
getContenteditableElement,
getLastBlock,
getNextBlock,
getPreviousBlock,
getTopAloneElement,
getTopEmptyElement, hasNextSibling, hasPreviousSibling
getTopEmptyElement,
hasNextSibling,
hasPreviousSibling
} from "./getBlock";
import {transaction, turnsIntoTransaction, updateTransaction} from "./transaction";
import {cancelSB, genEmptyElement} from "../../block/util";
@ -417,7 +413,7 @@ export const removeImage = (imgSelectElement: Element, nodeElement: HTMLElement,
imgSelectElement.remove();
updateTransaction(protyle, nodeElement.getAttribute("data-node-id"), nodeElement.outerHTML, oldHTML);
focusByWbr(nodeElement, range);
// 不太清楚为什么删除图片后无法上下键定位,但重绘后就好了 https://ld246.com/article/1714314625702
// 不太清楚为什么删除图片后无法上下键定位,但重绘后就好了 https://ld246.com/article/1714314625702
const editElement = getContenteditableElement(nodeElement);
if (editElement.innerHTML.trim() === "") {
editElement.innerHTML = "";