This commit is contained in:
Vanessa 2022-11-17 18:23:32 +08:00
parent 16ab6bea63
commit c35d9a8397

View File

@ -22,6 +22,7 @@ export const blockRender = (protyle: IProtyle, element: Element, top?: number) =
}
// 需置于请求返回前,否则快速滚动会导致重复加载 https://ld246.com/article/1666857862494?r=88250
item.setAttribute("data-render", "true");
item.style.height = (item.clientHeight - 8) + "px"; // 减少抖动 https://ld246.com/article/1668669380171
item.innerHTML = `<div class="protyle-icons${hasClosestByAttribute(item.parentElement, "data-type", "NodeBlockQueryEmbed") ? " fn__none" : ""}">
<span class="protyle-icon protyle-action__reload protyle-icon--first"><svg class="fn__rotate"><use xlink:href="#iconRefresh"></use></svg></span>
<span class="protyle-icon protyle-action__edit"><svg><use xlink:href="#iconEdit"></use></svg></span>
@ -79,6 +80,7 @@ export const blockRender = (protyle: IProtyle, element: Element, top?: number) =
blockRender(protyle, embedElement);
});
}
item.style.height = "";
});
});
};