-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
31 lines (25 loc) · 831 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="Content/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="Content/bootstrap/bootstrap-theme.min.css" rel="stylesheet" />
<link href="Content/bootstrap-contextmenu.css" rel="stylesheet" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
<script src="Scripts/bootstrap-contextmenu.js"></script>
<style>
body { min-height:100%; min-width:100%;}
.context-cont { width:80%; margin:auto; border:1px solid gray; margin-top:10px; height:400px; background-color:rgb(156, 156, 156); }
</style>
</head>
<body>
<div class="context-cont">
</div>
<script>
(function () {
$(".context-cont").bootstrapContextMenu();
})();
</script>
</body>
</html>