-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
25 lines (24 loc) · 991 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>World of Addons</title>
<link type="text/css" rel="stylesheet" href="../../css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="../../css/index.css">
<link type="text/css" rel="stylesheet" href="../../css/themes.css">
</head>
<main id="root"></main>
<div id="settings"></div>
<footer id="footer"></footer>
<div id="error"><!-- TODO add error handling for error channel. --></div>
<script src='../../js/materialize.min.js'></script>
<script src='./app.bundle.js'></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script>
document.addEventListener("DOMContentLoaded", function(event) {
const { ipcRenderer } = require('electron')
ipcRenderer.send('windowDoneLoading', {}) // let backend know react is done rendering.
})
</script>
</body>
</html>