-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>TaskHopper Example Data</title>
<script type="text/javascript" charset="utf-8" src="/js/jquery-1.6.2.js" /></script>
<script type="text/javascript" charset="utf-8" src="/js/taskhopper.js" /></script>
<script type="text/javascript" charset="utf-8">
var hopper = LinkedGov.Taskhopper();
$(document).ready(function() {
hopper.host = "http://localhost:8180";
hopper.taskType = "http://linkedgov.org/schema/task-types/float-error";
hopper.bind($("#task"));
});
</script>
</head>
<body>
<div id="task">
<div class="game">
</div>
<ul class="options">
<li id="edit"><a href="#">Yes, I can edit that.</a></li>
<li id="refer"><a href="#">I don't understand what it means; refer this to an expert.</a></li>
<li id="okay"><a href="#">It's actually fine.</a></li>
<li id="nullify"><a href="#">It's a null value.</a></li>
<li id="skip"><a href="#">Skip.</a></li>
</div>
</body>
</html>