docs: added windows -> create frameless window example (#20591)

* docs: added windows -> create frameless window example from electron-api-docs

* fixed style in accord with StandardJS

* removed class tag from button
This commit is contained in:
Kristof Kalocsai 2019-11-13 06:49:13 +01:00 committed by Cheng Zhao
parent a15e0e0657
commit 821bcdef75
3 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,12 @@
const { BrowserWindow } = require('electron').remote
const newWindowBtn = document.getElementById('frameless-window')
newWindowBtn.addEventListener('click', (event) => {
let win = new BrowserWindow({ frame: false })
win.on('close', () => { win = null })
win.loadURL('data:text/html,<h2>Hello World!</h2><a id="close" href="javascript:window.close()">Close this Window</a>')
win.show()
})