forked from slively/ng-context-menu
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
60 lines (57 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ng-context-menu</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="//ianwalter.github.io/flat-github-ribbon/dist/flat-github-ribbon.min.css" />
<style>
.pointer {
cursor: pointer;
}
.highlight {
color: #fff;
background-color: #3498db;
}
.expanded {
height: 400px;
}
.position-fixed {
position: fixed;
}
</style>
<script src="public/lib/requirejs/require.js" data-main="public/js/app.js"></script>
</head>
<body>
<div class="github-ribbon-container">
<a href="http://github.com/talis/ng-context-menu/"
class="github-ribbon peter-river">Visit Me on GitHub!</a>
</div>
<br>
<div class="container">
<div class="row">
<div class="col-xs-12">
<header>
<h1>ng-context-menu</h1>
<h4>
An AngularJS directive to display a context menu when a right-click event is triggered
</h4>
</header>
<br>
<div ng-view ng-cloak></div>
</div>
</div>
<br>
<p>
We hope you find this useful!<br>
«–– <a href="http://engineering.talis.com">Talis</a>
</p>
<br>
</div>
</body>
</html>