2023-07-13 08:10:37 +00:00
|
|
|
const { ipcRenderer, shell } = require('electron')
|
2020-08-27 14:31:51 +00:00
|
|
|
|
2020-09-14 17:36:54 +00:00
|
|
|
const newWindowBtn = document.getElementById('frameless-window')
|
2020-08-27 14:31:51 +00:00
|
|
|
|
2020-09-14 17:36:54 +00:00
|
|
|
newWindowBtn.addEventListener('click', () => {
|
|
|
|
const url = 'data:text/html,<h2>Hello World!</h2><a id="close" href="javascript:window.close()">Close this Window</a>'
|
|
|
|
ipcRenderer.send('create-frameless-window', { url })
|
2020-08-27 14:31:51 +00:00
|
|
|
})
|
2023-07-13 08:10:37 +00:00
|
|
|
|
|
|
|
const links = document.querySelectorAll('a[href]')
|
|
|
|
|
|
|
|
for (const link of links) {
|
|
|
|
const url = link.getAttribute('href')
|
|
|
|
if (url.indexOf('http') === 0) {
|
|
|
|
link.addEventListener('click', (e) => {
|
|
|
|
e.preventDefault()
|
|
|
|
shell.openExternal(url)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|