-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 1.28 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
<!doctype html>
<html>
<head>
<link rel='stylesheet' href='assets/bpm_styles.css' type='text/css' media='screen' charset='utf-8' />
<script src="assets/bpm_libs.js"></script>
<script>
spade.require('jquery-contextual-menu');
$(function(){});
</script>
</head>
<body>
<div class="exo-contextual-menu exo-shadow">
<ul>
<li class="exo-contextual-action">
<button href="#" data-emit="this.clone">
<span class="icon"></span>
<span class="label">Clone</span>
<span class="hotkey">C</span>
</button>
</li>
<li class="exo-contextual-action">
<button href="#" data-emit="this.destroy">
<span class="icon"></span>
<span class="label">Destroy</span>
<span class="hotkey">D</span>
</button>
</li>
<li class="exo-contextual-seperator">
<span class="icon">
</span>
<span class="label">
</li>
<li class="exo-contextual-action" >
<button href="#" data-emit="this.viewJob">
<span class="icon"></span>
<span class="label">View Job</span>
<span class="hotkey">J</span>
</button>
</li>
</ul>
</div>
</body>
</html>