-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 1.25 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Pretty debug AngularJS filter and directive</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div ng-app="MyApp"><div ng-controller="MyCtrl as vm">
<h1>Pretty Debug Output</h1>
<p ng-repeat-start="(key, val) in vm.tests">{{ key }}</p>
<pre>{{ val }}</pre>
<debug var="val"></debug>
<hr ng-repeat-end>
</div></div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
<script src="js/prettyjsdebug.js"></script>
</body>
</html>