-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathelectronIndex.html
More file actions
46 lines (40 loc) · 1.79 KB
/
electronIndex.html
File metadata and controls
46 lines (40 loc) · 1.79 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>The promises of this world are, for the most part, vain phantoms; and to confide in one's self, and become something of worth and value is the best and safest course.</title>
<link href="./node_modules/materialize-css/dist/css/materialize.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<!--custom css controls the LED lights-->
<link href="./css/custom.css" rel="stylesheet">
</head>
<body class="purple darken-4 white-text">
<h3 class="center" id="myH3"></h3>
<form>
<div class="container center green accent-2">
<div class="row center">
<div class="flow-text btn purple-text grey z-depth-2 col s6 m6 l6" id='test1Btn'>Fast tail end recursion</div>
<div class="col s2 m2 l2"></div>
<div class="btn purple-text grey z-depth-2 right col s3 m3 l3" id='clearBtn'>Clear</div>
</div>
<div class="row">
<div class="row black cyan-text text-accent-2 z-depth-2">A simple sequential "waterfall" where results are carried forward.</div>
</div>
<div class="row">
<div class="col s12 m12 l12 z-depth 4 purple-text" id="resultsGoHere"></div>
</div>
</div>
</form>
<div class="row">
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>