mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-21 19:41:05 +08:00
This commit is contained in:
parent
fff0504935
commit
f749a89abc
@ -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,9 +93,15 @@ 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)) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const setHTML = (options: { content: string, action?: string[] }, protyle: IProtyle) => {
|
||||
|
Loading…
Reference in New Issue
Block a user