Cleaned up some unnecessary spaces

This commit is contained in:
Kip DeCastro 2021-07-27 23:34:52 -04:00
parent 4d57fc494c
commit 8821a4749f
2 changed files with 0 additions and 7 deletions

View File

@ -6,9 +6,6 @@ const { getIsDevMode } = require("./devmode");
const windowList = {};
let mainWindow;
function getMainWindow() {
return mainWindow;
}
@ -76,7 +73,6 @@ function createWindow() {
},
});
// and load the index.html of the app.
mainWindow.loadFile(path.join(__dirname, "../renderer/index.html"));
@ -86,7 +82,6 @@ function createWindow() {
// Ensure we create child windows with the correct settings
mainWindow.webContents.on("new-window", handleNewWindow);
if (getIsDevMode()) {
mainWindow.webContents.toggleDevTools();
}

View File

@ -98,8 +98,6 @@ window.addEventListener("keyup", function (event) {
inputQueue.push({ type: "keyup", keyCode: event.keyCode });
});
module.exports = {
INPUT_BUFFER_SIZE,
inputBuffer,