+ Add FontAwesome

+ Close, Minimize (doesn't work yet)
This commit is contained in:
2019-10-24 16:05:31 +02:00
parent d1d417be9d
commit 36b3fd6d3c
1641 changed files with 129541 additions and 11 deletions

6
dist/index.html vendored
View File

@@ -1,6 +0,0 @@
<html>
<body>
<h1>This is a title</h1>
<p>This is normal text</p>
</body>
</html>

16
dist/main.js vendored
View File

@@ -5,7 +5,19 @@ var win = null;
electron_1.app.on('ready', function () {
win = new electron_1.BrowserWindow({
height: 600,
width: 800
width: 1000,
frame: false,
resizable: false,
alwaysOnTop: true,
title: "OffPass",
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true
}
});
win.loadFile('index.html');
//win.loadURL("https://google.de")
win.loadFile('../src/index.html');
});
electron_1.app.on('window-all-closed', function () {
win = null;
});