forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1022 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
30
31
32
33
34
35
36
37
38
39
<!doctype html><html>
<head>
<title>SDK JS example</title>
<link rel="stylesheet"
type="text/css"
href="./styles.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
</head>
<body ng-controller="appCtrl">
<div class="layout">
<div class="column left">
<h2>Available tasks</h2>
<ul id="tasks">
<li ng-repeat="task in tasks"
data-task-id="{{ task.id }}"
ng-click="loadTaskForm($event)">
<h4>{{ (task.name || task.id) }}</h4>
<div ng-if="task.description">{{ task.description }}</div>
</li>
</ul>
</div>
<div class="column right">
</div>
</div>
<script src="./jquery-1.11.2.js"
type="text/javascript"></script>
<script src="./angular-1.2.16.min.js"
type="text/javascript"></script>
<script src="./camunda-bpm-sdk-angular.js"
type="text/javascript"></script>
<script src="./scripts.js"
type="text/javascript"></script>
</body>
</html>