Skip to content

Commit 180d2e2

Browse files
committed
* Refactoring
1 parent 47b849b commit 180d2e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

public/electron.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require("path");
55
const isDev = require("electron-is-dev");
66
let mainWindow;
77

8-
function createWindow() {
8+
const createWindow = () => {
99
mainWindow = new BrowserWindow({
1010
webPreferences: {
1111
nodeIntegration: true
@@ -34,7 +34,7 @@ function createWindow() {
3434
event.preventDefault();
3535
electron.shell.openExternal(arg);
3636
});
37-
}
37+
};
3838

3939
app.on("ready", createWindow);
4040

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Web site created using create-react-app"
10+
content="File and text hash calculator"
1111
/>
1212
<link rel="apple-touch-icon" href="logo192.png" />
1313
<!--

0 commit comments

Comments
 (0)