docs: handle opening links in the default browser in main.js
This commit is contained in:
parent
117d5310f5
commit
08bbff5361
5 changed files with 44 additions and 25 deletions
|
@ -1,14 +1,8 @@
|
|||
const { shell, ipcRenderer } = require('electron')
|
||||
const { ipcRenderer } = require('electron')
|
||||
|
||||
const newWindowBtn = document.getElementById('new-window')
|
||||
const link = document.getElementById('browser-window-link')
|
||||
|
||||
newWindowBtn.addEventListener('click', (event) => {
|
||||
const url = 'https://electronjs.org'
|
||||
ipcRenderer.send('new-window', { url, width: 400, height: 320 })
|
||||
})
|
||||
|
||||
link.addEventListener('click', (e) => {
|
||||
e.preventDefault()
|
||||
shell.openExternal('https://www.electronjs.org/docs/latest/api/browser-window')
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue