From 301cb6a9af6acca41b5f7b9991498da30bc19dd9 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 17 Nov 2017 17:12:42 -0500 Subject: Removed electron and changed on what AleeBot's playing --- src/index.js | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 src/index.js (limited to 'src/index.js') diff --git a/src/index.js b/src/index.js deleted file mode 100644 index 93856e3..0000000 --- a/src/index.js +++ /dev/null @@ -1,42 +0,0 @@ -/********************************************* - * - * AleeBot for Discord servers - * Copyright (C) 2017 AleeCorp - * License: MIT - * - **********************************************/ -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, 'setup.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(); - } -}); -- cgit v1.2.3