From 999fd199ed801ab01ff4b8ff11c786bf5d722966 Mon Sep 17 00:00:00 2001 From: Lynne Date: Tue, 8 Jan 2019 08:15:45 +1000 Subject: [PATCH] added res folder with css and moved index.html there --- index.html | 13 ------------- main.js | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index 8d710f0..0000000 --- a/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Hello World! - - -

Hello World!

- We are using node , - Chrome , - and Electron . - - diff --git a/main.js b/main.js index 295b515..d0d4a8e 100644 --- a/main.js +++ b/main.js @@ -9,7 +9,7 @@ function createWindow () { win = new BrowserWindow({ width: 800, height: 600 }) // and load the index.html of the app. - win.loadFile('index.html') + win.loadFile('res/index.html') // Open the DevTools. win.webContents.openDevTools()