electron/docs/fiddles/windows/manage-windows/create-frameless-window/main.js
Milan Burda b14b876d50
docs: fix fiddles (#39060)
* refactor: replace Array.prototype.forEach.call with plain for-of

* fix: add missing contextIsolation: false

* fix: open links in default browser
2023-07-13 10:10:37 +02:00

23 lines
515 B
JavaScript

const { app, BrowserWindow, ipcMain } = require('electron')
ipcMain.on('create-frameless-window', (event, { url }) => {
const win = new BrowserWindow({ frame: false })
win.loadURL(url)
})
function createWindow () {
const mainWindow = new BrowserWindow({
width: 600,
height: 400,
title: 'Create a frameless window',
webPreferences: {
contextIsolation: false,
nodeIntegration: true
}
})
mainWindow.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow()
})