-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
38 lines (27 loc) · 912 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>KaryotypeSVG demo file</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- this example demonstrates how to run karyotypesvg using require.js !-->
<script src='js/vendor/jquery-2.0.2.min.js'></script>
<script src='js/vendor/bootstrap-3.3.4.min.js'></script>
<!-- see demo.js for how to instanciate a karyotype view -->
<script data-main='demo' src='js/vendor/require.js' ></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>KaryotypeSVG demo Chromosome 1</h1>
</div>
<div id="karyotypeView"></div>
</div>
<script>
$(function() { $("[data-toggle='tooltip']").tooltip();});
</script>
</body>
</html>