-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (39 loc) · 1.35 KB
/
index.php
File metadata and controls
49 lines (39 loc) · 1.35 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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/d3.min.js"></script>
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/knockout-3.1.0.js"></script>
<script type="text/javascript" src="js/stemmer/lib/Snowball.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" media="all"/>
<style>
.background {
fill: #eee;
}
line {
stroke: #fff;
}
text.active {
fill: red;
}
</style>
<title>Matrix</title>
<script>
</script>
</head>
<body>
<p>Order: <select id="order">
<option value="sequence">by Original sequence</option>
<option value="name">by Name</option>
<option value="count">by Frequency</option>
</select>
<br>
<textarea id="text1" class="input-search" data-bind="value:text1" rows="4" cols="50" style='width:98%'>
</textarea>
<textarea id="text2" class="input-search" data-bind="value:text2" rows="4" cols="50" style='width:98%'>
</textarea>
<br>
<input type="submit" value="Submit">
</body>
</html>