-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Fanuc UI</title>
<link
rel="stylesheet"
href="./node_modules/bootstrap/dist/css/bootstrap.css"
/>
<link rel="stylesheet" href="index.css" />
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/@popperjs/core/dist/umd/popper.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.js"></script>
</head>
<body id="body">
<script src="./pages/begin.js"></script>
<script src="./pages/input.js"></script>
<script src="./pages/testpoint.js"></script>
<script src="./pages/status.js"></script>
<script src="./pages/summary.js"></script>
<script>
// This script handles listening for clicks and loading the next page
// Load input page when begin button is clicked
var beginBtn = document.getElementById("begin-btn");
var body = document.getElementById("body");
beginBtn.addEventListener("click", function () {
console.log("Begin btn clicked.");
fadeOut(load_input);
});
</script>
</body>
</html>