-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 1.66 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="client/src/bug-report.js"></script>
<title>Document</title>
</head>
<body>
<h1>Test Bug Report</h1>
<bug-report
id="bug-report"
title="Virtual Labs Bug Report"
page-type="SIMULATION"
>
</bug-report>
<!-- Page Content -->
<h1>Hello World</h1>
<h2>This is a test page</h2>
<script>
// pure javascript
let object;
let obj2 = {
organisation: "Virtual Labs",
developer_institute: "IIITH",
expname: "Merge Sort",
labname: "DS",
phase: "2",
};
let httpRequest = new XMLHttpRequest(); // asynchronous request
httpRequest.open("GET", "./questions.json", true);
httpRequest.send();
httpRequest.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
// when the request has completed
object = JSON.parse(this.response);
console.log(object);
document
.getElementsByTagName("bug-report")[0]
.setAttribute("checkbox-json", JSON.stringify(object));
document
.getElementsByTagName("bug-report")[0]
.setAttribute("context-info", JSON.stringify(obj2));
document
.getElementsByTagName("bug-report")[0]
.addEventListener("bugreport_success", (event) => {
console.log(event);
});
}
});
</script>
</body>
</html>