-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 851 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>IniTracker</title>
<link rel="stylesheet" type="text/css" href="sty/modal.css">
<link rel="stylesheet" type="text/css" href="sty/nav.css">
<link rel="stylesheet" type="text/css" href="sty/list.css">
<script src="src/gumption.js" ></script>
<script src="src/initmodal.js"></script>
<script src="src/navbar.js" ></script>
<script src="src/list.js"></script>
</head>
<body>
<script>
const {webFrame} = require('electron')
const {dialog,app} = require('electron').remote;
const fs = require('fs');
const app_path = app.getAppPath();
var gump = new Gumption();
gump.initUI();
</script>
</body>
</html>