aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKumar Priyansh <[email protected]>2019-06-10 19:05:04 +0530
committerKumar Priyansh <[email protected]>2019-06-10 19:05:04 +0530
commit64cf1a0053eb65b3685e9e16acb28ed8ea05e4ca (patch)
tree03dca007dcef31870daf874043c4dc0c9d97348f
parente3eccc2a7d15732948ad3634f9b5802a7c1af1ce (diff)
downloadauthorr-64cf1a0053eb65b3685e9e16acb28ed8ea05e4ca.tar.xz
authorr-64cf1a0053eb65b3685e9e16acb28ed8ea05e4ca.zip
Updated Main JS
-rw-r--r--main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.js b/main.js
index 17e9e2b..ea33294 100644
--- a/main.js
+++ b/main.js
@@ -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