-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (24 loc) · 1.13 KB
/
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
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="cbio.js"></script>
</head>
<body>
<div class="container" id="cbio">
<h3>cBio experiments</h3>
<p>This is a blank page that loads the <a href="https://github.com/ibl/cbio/blob/gh-pages/cbio.js" target=_blank>cbio.js</a> script. All the action is in the browser's command line. <br>To load the same library in your webApp just include this line (there are NO dependencies from other libraries, such as jQuery):</p>
<p>
<code>
<<span style="color:red">script</span> <span style="color:green">src</span>="<span style="color:blue">https://ibl.github.io/cbio/cbio.js</span>"></<span style="color:red">script</span>>
</code>
</p>
For more informaion and versioned source code see <a href="https://github.com/ibl/cbio" target=_blank>https://github.com/ibl/cbio</a>.
<hr>
</div>
<script>
cbio.hello();
</script>
</body>
</html>