Commit 186906a7 authored by amonsiri unkham's avatar amonsiri unkham

Delete main.js

parent 8328fa4e
const {app, BrowserWindow} = require('electron')
const path = require('path')
const url = require('url')
let win
//เรียกอ๊อฟเจ็ควินโดร
function createWindow () {
win = new BrowserWindow({width: 800, height: 600})
win.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
win.webContents.openDevTools()
//ให้อีเว้นอะไร
win.on('closed', () => {
win = null
})
}
app.on('ready', createWindow)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (win === null) {
createWindow()
}
})
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment