siyuan/app/src/boot/compatibleVersion.ts
Vanessa 0a1ad2ec34 🚨
2024-12-24 10:45:10 +08:00

9 lines
309 B
TypeScript

export const img3115 = (imgElement: HTMLElement) => {
// 移除 3.1.15 以前 .img width 样式
if (imgElement.style.minWidth) {
// 居中需要 minWidth 样式,不能移除 style 属性
imgElement.style.width = "";
} else {
imgElement.removeAttribute("style");
}
};