-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfileview.html
More file actions
27 lines (20 loc) · 798 Bytes
/
fileview.html
File metadata and controls
27 lines (20 loc) · 798 Bytes
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
<!DOCTYPE html>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.js"></script>
<div id="vis"></div>
<iframe id="frameA" scrolling="yes" height="500" width="500" src=""></iframe>
<iframe id="frameB" scrolling="yes" height="500" width="500" src=""></iframe>
<script>
wid = window.innerWidth-40;
hgt = window.innerHeight-30;
var qs = location.search.substring(1)
var q = qs.split("-")
a = "./files/" + q[0] + ".txt"
b = "./files/" + q[1] + ".txt"
document.getElementById("frameA").src = a;
document.getElementById("frameA").height = hgt;
document.getElementById("frameA").width = wid/2;
document.getElementById("frameB").src = b;
document.getElementById("frameB").height = hgt;
document.getElementById("frameB").width = wid/2;
</script>