-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex_m.html
57 lines (46 loc) · 1.94 KB
/
index_m.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
<!DOCTYPE html>
<html manifest="/json_dump.appcache">
<head>
<meta charset="utf-8" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1, user-scalable = yes,minimum-scale=0.25, maximum-scale=3">
<title>The Fastest JSON visualizer</title>
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<link rel="stylesheet" href="json_dump_m.css" type="text/css">
<link rel="stylesheet" href="bootstrap.css" type="text/css">
<link rel="stylesheet" href="bootstrap-responsive.css" type="text/css">
<script src="autosave.js"></script>
<script src="json_dump.js"></script>
<script src="gotop.js"></script>
<style>
</style>
</head>
<body><div style="width:99%;">
<h2>JSON Visualizer</h2>
<div class="">
<textarea id="raw_json" rows=5 style="width:95%;" placeholder="Please copy and paste the text in JSON format here."></textarea><br>
<a class="btn btn-info btn-large" id="dump_btn">Go!</a>
<a class="btn" id="reset_btn">Reset</a>
<a class="btn pull-right" id="sample_btn">Try JSON Sample</a>
</div>
<br clear="all">
<div id="result">
</div>
<hr>
<div class="footer">
Copyright(c) 2011-2013 <a href="http://kimihiro-n.appspot.com">Pistatium</a>. All Rights Reserved.
</div>
</div>
<div class="gotop"><a href="#top">↑Go to Top</a></div>
</body>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3817632-8']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</html>