This repository was archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.57 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
<!doctype html>
<html lang="en" data-ng-app="Code-Y.ajax.sample">
<head>
<meta charset="UTF-8">
<title>Code-Y ~ AjaxInterceptor Angular</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<script src="/vendor/angular/angular.min.js"></script>
<script src="/release/angular-codey-ajaxinterceptor.js"></script>
<style>
[ng-click], [data-ng-click] {
cursor: pointer !important;
}
code {
border: 1px solid transparent;
}
code.danger {
border-color: red !important;
}
code.info {
border-color: blue !important;
}
.dbg-item {
margin-bottom: 5px;
border-bottom: 1px solid gainsboro;
padding-bottom: 5px;
}
.dbg-item strong {
width: 150px;
display: inline-block;
padding-right: 1em;
text-align: right;
}
</style>
</head>
<body>
<div class="">
<nav-menu></nav-menu>
</div>
<section>
<debugger></debugger>
</section>
<script src="/sample/application.js"></script>
<script src="/sample/Menu.js"></script>
<script src="/sample/Debugger.js"></script>
</body>
</html>