forked from phenotips/open-pedigree
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
36 lines (30 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Open Pedigree by PhenoTips®</title>
<!-- Load jquery before prototype, making it available via jQuery but not $ -->
<script type="text/javascript" src="public/vendor/jquery-3.7.1.min.js"></script>
<!-- PrototypeJS and scriptaculous plugin -->
<!-- NOTE: PrototypeJS (v1.7.3) and Scriptaculous are effectively abandonware with no upstream releases. -->
<!-- They are retained as-is; no newer versions are available from the original authors. -->
<script type="text/javascript" src="public/vendor/prototype-1.7.3.js"></script>
<script type="text/javascript" src="public/vendor/scriptaculous/effects.js"></script>
<script type="text/javascript" src="public/vendor/scriptaculous/dragdrop.js"></script>
<script type="text/javascript" src="public/vendor/scriptaculous/slider.js"></script>
<!-- XWiki REST API and widgets -->
<script type="text/javascript" src="public/vendor/xwiki/xwiki-min.js"></script>
<script type="text/javascript" src="public/vendor/phenotips/Widgets.js"></script>
<script type="text/javascript" src="public/vendor/phenotips/DateTimePicker.js"></script>
<!-- Open Pedigree bundle -->
<script type="text/javascript" src="dist/pedigree.min.js"></script>
</head>
<body id='body'>
<script type="text/javascript">
var editor;
document.observe('dom:loaded',function() {
editor = OpenPedigree.initialiseEditor({patientDataUrl: 'local:pedigreeData?format=internal&closeOnSave=true'});
});
</script>
</body>
</html>