6 lines
219 B
JavaScript
6 lines
219 B
JavaScript
const newWindowBtn = document.getElementById('new-window')
|
|
|
|
newWindowBtn.addEventListener('click', (event) => {
|
|
const url = 'https://electronjs.org'
|
|
window.electronAPI.newWindow({ url, width: 400, height: 320 })
|
|
})
|