Vanessa 2025-03-22 11:14:12 +08:00
parent cdc8206968
commit 602a37c72a

View File

@ -1026,6 +1026,18 @@ export const zoomOut = (options: {
setTimeout(() => {
resizeObserver.disconnect();
}, 1000 * 3);
} else if (!options.focusId) {
fetchPost("/api/filetree/getDoc", {
id: options.protyle.block.rootID,
size: window.siyuan.config.editor.dynamicLoadBlocks,
}, getFocusResponse => {
onGet({
data: getFocusResponse,
protyle: options.protyle,
action: options.isPushBack ? [Constants.CB_GET_FOCUS] : [Constants.CB_GET_FOCUS, Constants.CB_GET_UNUNDO],
});
});
return;
} else if (options.id === options.protyle.block.rootID) { // 聚焦返回后,该块是动态加载的,但是没加载出来
fetchPost("/api/filetree/getDoc", {
id: options.focusId,