-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenogram.html
66 lines (50 loc) · 2.13 KB
/
genogram.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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>CMT Genetic Research - Pedigree</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/scrolling-nav.css" rel="stylesheet">
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom JavaScript for this theme -->
<script src="js/scrolling-nav.js"></script>
<!-- GO JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gojs/1.8.9/go-debug.js"></script>
<script type="text/javascript" src="./genogram.js"></script>
<!-- SurveyJS -->
<script src="https://unpkg.com/jquery"></script>
<script src="https://surveyjs.azureedge.net/1.1.1/survey.jquery.js"></script>
<link href="https://surveyjs.azureedge.net/1.1.1/survey.css" type="text/css" rel="stylesheet" />
</head>
<!-- About -->
<body onload="init()">
<section id="about">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>Create your pedigree</h2>
Name: <input type="text" id="myText" value="Name">
<button onclick="button()">Try it</button>
<!--<p id="demo"></p>-->
<div id="surveyElement"></div>
<div id="surveyResult"></div>
<script type="text/javascript" src="genogram.js"></script>
<div id="sample">
<div id="myDiagramDiv" style="border: solid 1px black; width:100%; height:400px"></div>
</div>
</div>
</div>
</div>
</section>
</body>