Vanessa 2024-03-11 12:18:40 +08:00
parent 9c512960bc
commit a440d3768c

View file

@ -1221,9 +1221,13 @@ app.on("activate", () => {
}
});
// 在编辑器内打开链接的处理,比如 iframe 上的打开链接。
app.on("web-contents-created", (webContentsCreatedEvent, contents) => {
contents.setWindowOpenHandler((details) => {
// https://github.com/siyuan-note/siyuan/issues/10567
if (details.url.startsWith("file:///") && details.disposition === "foreground-tab") {
return;
}
// 在编辑器内打开链接的处理,比如 iframe 上的打开链接。
shell.openExternal(details.url);
return {action: "deny"};
});