forked from maeyler/BLM305-2018
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinspect.html
More file actions
64 lines (60 loc) · 1.88 KB
/
inspect.html
File metadata and controls
64 lines (60 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="manifest" href="manifest.json">
<link href="https://maeyler.github.io/JS/sss/inspector.css"
rel="stylesheet" media="all">
<script src="https://maeyler.github.io/JS/sss/inspector.js"></script>
<script src="work/c4_data.js"></script>
<script src="work/c6_object.js"></script>
<script src="exam/Quiz.js"></script>
<script src="work/Async.js"></script>
<script src="work/CW4.js"></script>
<script src="work/Database.js"></script>
<title>BLM305 Work </title>
</head>
<body>
<p><b id=docName></b>
<a href="https://maeyler.github.io/JS/sss/">Read me</a>
<a href="https://maeyler.github.io/JS/sss/Turkish">Turkish</a>
</p>
<script>
"use strict";
var a, b, c, code; //global variables
function init() {
let
len = 123, name = "Circle", pi = Math.PI,
sqrt = Math.sqrt, power = Math.pow;
a = [0, 11, "22", "abc"];
c = {len, name, pi, sqrt, power};
display(new Chap4());
display(new Chap6());
display(new Quiz());
MENU = new Async(); //global
display(MENU);
display(new CW4());
}
docName.innerText = "Inspector "+VERSION;
try {
inspect(document.body, init); //makes the table
inp.value = "caches.open('JS2')";
} catch(e) {
reportError(e);
}
</script>
<p><input type=file multiple onChange='fileSelect(this)' />
</p><p>
<a href="work/c4_data.html">Data Analysis</a>  
<a href="exam/Quiz.html">Quiz solution</a> <br>
<a href="work/Animation.html">Animation</a>  
<a href="exam/Timing.html">Set intersection</a> <br>
<a href="work/Graphics.html">Graphics</a>  
<a href="work/GraphInspector.html">Pixel processing</a> <br>
<a href="exam/Final.html">Final exam solution</a>
</p>
<pre id=disp1></pre>
<img id=disp2 />
</body>
</html>