diff options
| author | Kumar Priyansh <[email protected]> | 2019-06-10 19:05:04 +0530 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2019-06-10 19:05:04 +0530 |
| commit | 64cf1a0053eb65b3685e9e16acb28ed8ea05e4ca (patch) | |
| tree | 03dca007dcef31870daf874043c4dc0c9d97348f | |
| parent | e3eccc2a7d15732948ad3634f9b5802a7c1af1ce (diff) | |
| download | authorr-64cf1a0053eb65b3685e9e16acb28ed8ea05e4ca.tar.xz authorr-64cf1a0053eb65b3685e9e16acb28ed8ea05e4ca.zip | |
Updated Main JS
| -rw-r--r-- | main.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ function createWindow () { win = null }) } -app.on('ready', console.log('This Works') ) +app.on('ready', createWindow) app.on('window-all-closed', () => { if (process.platform !== 'darwin') { @@ -35,6 +35,6 @@ app.on('window-all-closed', () => { app.on('activate', () => { if (win === null) { - console.log('This Works'); + createWindow() } })
\ No newline at end of file |
