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:
parent
a15e0e0657
commit
821bcdef75
3 changed files with 63 additions and 0 deletions
|
@ -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()
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue