forked from mb21/JSONedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 1.24 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
<!doctype html>
<html ng-app="JSONedit">
<head>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-ui-sortable/sortable.min.js"></script>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/directives.js"></script>
<script src="js/JSONedit.js"></script>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a href="https://github.com/mb21/JSONedit"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png" alt="Fork me on GitHub"></a>
<div id="mainView" ng-controller="MainViewCtrl">
<h2>JSONedit</h2>
<div class="jsonView">
<json child="jsonData" default-collapsed="false" type="object"></json>
</div>
<hr>
<div>
<textarea id="jsonTextarea" ng-model="jsonString"></textarea>
<span class="red" ng-if="!wellFormed">JSON not well-formed!</span>
</div>
</div>
</div>
</body>
</html>