This commit is contained in:
parent
fff0504935
commit
f749a89abc
2 changed files with 12 additions and 6 deletions
|
@ -360,6 +360,10 @@ ${window.siyuan.languages.createdAt} ${dayjs(response.data.ial.id.substr(0, 14))
|
|||
range.selectNodeContents(this.editElement);
|
||||
focusByRange(range);
|
||||
}
|
||||
const loadingElement = protyle.element.querySelector(".fn__loading");
|
||||
if (loadingElement) {
|
||||
loadingElement.remove();
|
||||
}
|
||||
if (scrollAttr) {
|
||||
restoreScroll(protyle, scrollAttr === Constants.CB_GET_SCROLL ? undefined : scrollAttr);
|
||||
}
|
||||
|
|
|
@ -17,10 +17,6 @@ import {preventScroll} from "../scroll/preventScroll";
|
|||
import {restoreScroll} from "../scroll/saveScroll";
|
||||
|
||||
export const onGet = (data: IWebSocketData, protyle: IProtyle, action: string[] = [], scrollAttr?: string) => {
|
||||
const loadingElement = protyle.element.querySelector(".fn__loading");
|
||||
if (loadingElement) {
|
||||
loadingElement.remove();
|
||||
}
|
||||
protyle.wysiwyg.element.removeAttribute("data-top");
|
||||
if (data.code === 1) {
|
||||
// 其他报错
|
||||
|
@ -97,8 +93,14 @@ export const onGet = (data: IWebSocketData, protyle: IProtyle, action: string[]
|
|||
action,
|
||||
}, protyle);
|
||||
|
||||
if (scrollAttr && ((protyle.options.render.title && protyle.title.editElement.getAttribute("data-render") === "true") || !protyle.options.render.title)) {
|
||||
restoreScroll(protyle, scrollAttr);
|
||||
if ((protyle.options.render.title && protyle.title.editElement.getAttribute("data-render") === "true") || !protyle.options.render.title) {
|
||||
const loadingElement = protyle.element.querySelector(".fn__loading");
|
||||
if (loadingElement) {
|
||||
loadingElement.remove();
|
||||
}
|
||||
if (scrollAttr) {
|
||||
restoreScroll(protyle, scrollAttr);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue