-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (40 loc) · 1.21 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>[sp(an]notate)</title>
<link rel="stylesheet" href="bower_components/jquery-ui/themes/smoothness/theme.css">
<link rel="stylesheet" href="css/spannotate.css">
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/undo-manager/lib/undomanager.js"></script>
<script src="js/spannotate.js"></script>
</head>
<body>
<h1 id="title">Tagging</h1>
<form id="toolbar">
<input type="button" id="previous" value="◂" title="open previous segment (←)">
<input type="button" id="next" value="▸" title="open next segment (→)">
<input type="button" id="retransmit" value="⇈" title="retransmit all tags">
<input type="button" id="undo" value="↶" title="undo (ctrl+z)">
</form>
<div id="document"></div>
<div style="display: inline-block">
<div id="tagList">
<div id="tags"></div>
</div>
<div id="segments">
<h5>Segments:</h5>
<form>
<select id="segmentList" multiple>
</select>
<input type="button" id="openSegment" value="↪" title="open selected segment">
</form>
</div>
</div>
<p id="tagLog"></p>
<script>
$(init);
</script>
</body>
</html>