2018-11-08 15:57:28 +00:00
|
|
|
const { WebContentsView, app, webContents } = require('electron')
|
|
|
|
app.on('ready', function () {
|
|
|
|
const web = webContents.create({})
|
|
|
|
new WebContentsView(web) // eslint-disable-line
|
|
|
|
|
2019-12-13 09:57:02 +00:00
|
|
|
app.quit()
|
2018-11-08 15:57:28 +00:00
|
|
|
})
|