-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 898 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
<!doctype html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<title>AngularJS sample</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/flotr2.min.js"></script>
<script src="js/vendor/angular.min.js"></script>
<script src="js/filter.js"></script>
</head>
<body ng-controller="baseCtrl">
<div>
<dl class="dl-horizontal">
<dt><label>Sequence:</label></dt>
<dd><input type="text" ng-model="inputsequence"
ng-change="change_inputsequence()" placeholder=""></dd>
</dl>
<hr>
<dl class="dl-horizontal">
<dt>Input</dt><dd>{{inputsequence}}</dd>
<dt>Output</dt><dd>{{inputsequence | revcomp}}</dd>
</dl>
<hr>
<base-distribution></base-distribution>
</div>
<script src="js/app.js"></script>
</body>
</html>