-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrender.html
More file actions
62 lines (52 loc) · 2.85 KB
/
render.html
File metadata and controls
62 lines (52 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex,follow">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script src="render.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="render.css">
<link rel="apple-touch-icon" sizes="180x180" href="../app/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../app/images/favicon32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../app/images/favicon16.png">
<link rel="mask-icon" href="../app/images/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="../app/images/favicon.ico">
<meta name="msapplication-config" content="../app/images/browserconfig.xml">
<meta name="theme-color" content="#2196F3">
<link rel="manifest" href="/manifest.json">
<title>Family Tree</title>
</head>
<body onload="if ('serviceWorker' in navigator && document.location.protocol=='https:') navigator.serviceWorker.register('/sw.js', {scope: '/'}); main()">
<canvas id="canvas" width=1000 height=1000 tabindex="0"></canvas>
<div id="widgets">
<div class="btn-class big-btn-class not-mobile" id="zoomin">+</div>
<div class="btn-class big-btn-class not-mobile" id="zoomout">-</div>
<div id="searcharea">
<input type="text" id="searchtext" placeholder="Type a name">
<div id="searchlist"></div>
</div>
<div id="narrativewidgetarea">
<div class="btn-class big-btn-class" id="narrativebutton">Narratives</div>
<div id="narrativelist"></div>
</div>
<div class="btn-class big-btn-class not-mobile" id="helpbutton">Help</div>
<div class="btn-class big-btn-class mobile" id="helpbutton2">?</div><br/>
<div id="message"></div>
<div id="notification"></div>
</div>
<div id="narrativewindow" class="common-window">
<div id="narrativebody" class="viewarea infoarea"></div>
<div class="window-decorators"><div class="btn-class" id="closenarrativewindow">X</div></div>
</div>
<div id="infowindow" class="common-window">
<div id="textinfo" class="viewarea infoarea"></div>
<div class="window-decorators"><div class="btn-class" id="closeinfowindow">X</div></div>
</div>
<div id="loadingwindow" class="panel-class">
<div>Loading, please wait.</div>
</div>
<div id="galleryviewer"></div>
<div id="picviewer" tabindex="1"></div>
<div id="watermark">Family Viewer 2.0<div class="copyright">Copyright 2017 Jeff Epstein</div></div>
</body>
</html>