mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
menu: handle external links, force open new windows
This commit is contained in:
parent
2732d00825
commit
3b787c1aa4
@ -1 +1 @@
|
|||||||
Subproject commit f6ba894c4ffe737aafd487013a46a589ee09fbac
|
Subproject commit 02d4357c85075bfbb3ddbb7fa0fde3600ee5cb60
|
@ -1 +1 @@
|
|||||||
Subproject commit 6ab30139be95bca0d3cffdb8d5127da36624bab4
|
Subproject commit 8eb2810a1bedb96ea82e20dadefdcd328b6978f9
|
@ -49,6 +49,11 @@ module.exports.focusMenu = async () => {
|
|||||||
appQuit = true;
|
appQuit = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
enhancerMenu.webContents.on('new-window', (e, url) => {
|
||||||
|
e.preventDefault();
|
||||||
|
require('electron').shell.openExternal(url);
|
||||||
|
});
|
||||||
|
|
||||||
const trayID = 'f96f4a73-21af-4e3f-a68f-ab4976b020da',
|
const trayID = 'f96f4a73-21af-4e3f-a68f-ab4976b020da',
|
||||||
runInBackground =
|
runInBackground =
|
||||||
(await registry.enabled(trayID)) &&
|
(await registry.enabled(trayID)) &&
|
||||||
@ -67,7 +72,7 @@ module.exports.focusNotion = () => {
|
|||||||
{ BrowserWindow } = require('electron'),
|
{ BrowserWindow } = require('electron'),
|
||||||
{ createWindow } = env.notionRequire('main/createWindow.js');
|
{ createWindow } = env.notionRequire('main/createWindow.js');
|
||||||
let window = BrowserWindow.getAllWindows().find((win) => win.id !== enhancerMenu.id);
|
let window = BrowserWindow.getAllWindows().find((win) => win.id !== enhancerMenu.id);
|
||||||
if (!window) window = createWindow();
|
if (!window) window = createWindow('', null, true);
|
||||||
window.show();
|
window.show();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user