-
Notifications
You must be signed in to change notification settings - Fork 1
/
viewer.html
54 lines (43 loc) · 1.52 KB
/
viewer.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>QC Viewer</title>
<meta name="description" content="">
<meta name="author" content="SitePoint">
<meta property="og:title" content="">
<meta property="og:type" content="website">
<meta property="og:description" content="">
<meta property="og:image" content="image.png">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="main.css">
</head>
<body>
<table id='qc_grid'></table>
<!-- file input field -->
<input type="file"
id="qc_file_selection"
accept=".json"
onchange="onQCFileSelect(event)">
<!-- <input onclick="loadQCFile"
type="button"
value="Load file">
-->
<div>
<select name="protocol" id="protocol_selection", onchange="updateViewer(event)">
<option value="select protocol">select protocol</option>
</select>
</div>
<div id="criteria_div">
<div id="passing_criteria_selection">
</div>
<div id="ignore_criteria_selection">
</div>
</div>
<!-- your content here... -->
<script src="scripts/viewer.js"></script>
</body>
</html>