-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.97 KB
/
Copy pathindex.html
File metadata and controls
48 lines (43 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="./directive/text-annotation.css">
</head>
<body ng-app="myApp" ng-controller="TextAnnotation">
<b>POS Tag</b>
<br/>
<p>editable: true, multilabel: true</p>
<text-annotation config="pos_tag.config" doc="pos_tag.doc" editable="true" multilabel="true"
confirm="true"></text-annotation>
<br/>
<p>editable: true, multilabel: false</p>
<text-annotation config="pos_tag.config" doc="pos_tag.doc" editable="true" multilabel="false"
confirm="false"></text-annotation>
<br/>
<p>editable: false</p>
<text-annotation config="pos_tag.config" doc="pos_tag.doc" editable="false" confirm="true"></text-annotation>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.js"></script>
<script src="./resources/lib/jquery.svg.min.js"></script>
<script src="./resources/brat/brat.js"></script>
<script
src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script>
<script
src="https://getbootstrap.com/docs/3.3/dist/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.min.js"></script>
<script src="./configs/pos_tag.js"></script>
<script src="./configs/util-tags.js"></script>
<script src="app.js"></script>
<script component="text-annotation-script" src="./directive/text-annotation.js"></script>
<script src="./directive/update-annotation-modal.js"></script>
<script src="./directive/new-annotation-modal.js"></script>
<script src="controller.js"></script>
</body>
</html>