Skip to content

Commit 3bb31be

Browse files
committed
Adds meta tags, favicon and little tweaks
1 parent e8f9fb6 commit 3bb31be

File tree

5 files changed

+29
-15
lines changed

5 files changed

+29
-15
lines changed

app.css

+12-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ body {
1010
text-align: center;
1111
}
1212

13+
.h {
14+
display: none;
15+
}
16+
1317
a {
1418
color: #000;
1519
text-decoration: none;
@@ -18,7 +22,7 @@ a {
1822
cursor: pointer;
1923
}
2024

21-
a.h{
25+
a.s{
2226
color: #e6a117;
2327
border-bottom: 1px solid #e6a117;
2428
}
@@ -31,7 +35,7 @@ a.h{
3135
padding: 1%;
3236
resize: none;
3337
outline: none;
34-
font-size: 1em;
38+
font-size: 0.8em;
3539
text-decoration: none;
3640
border: 1px solid #000;
3741
font-family: "Courier New", Courier, monospace;
@@ -47,11 +51,16 @@ a.h{
4751
border: 1px solid #000;
4852
}
4953

54+
.d {
55+
background-color: #fbfbfb;
56+
padding: 20px;
57+
}
58+
5059
pre{
5160
display: block;
5261
font-family: monospace;
5362
white-space: pre;
54-
font-size: 12px;
63+
font-size: 0.8em;
5564
}
5665

5766
@media only screen and (max-width: 768px) {

bundle.js

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ function diffDisplay(str1, str2) {
2828

2929
display.appendChild(fragment);
3030

31+
display.classList.remove('h');
3132
location.hash = '#diff';
3233
}
3334

favicon.ico

4.06 KB
Binary file not shown.

index.html

+15-12
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22
<html lang="en">
33

44
<head>
5-
<!-- Required meta tags -->
65
<meta charset="utf-8">
76
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<link rel="shortcut icon" href="./favicon.ico" />
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
9+
<meta name="description" content="JSON diff tool, which first sorts the JSON object and then compares them.">
10+
<meta name="keywords" content="diff, compare, sort, json, alphabetically, sort json, sort and diff, sort and compare">
11+
812
<title>JSON sort and diff</title>
913

1014
<link rel="stylesheet" href="./app.css">
@@ -16,24 +20,23 @@
1620
<h1>JSON Sort and Diff</h1>
1721
<form onsubmit="appSort(event, 't1', 't2')">
1822
<div class="boxes">
19-
<textarea id="t1" class="t" name="jsonabc1" placeholder="Paste your first unsorted JSON here" aria-label="Paste your first unsorted JSON here"
23+
<textarea id="t1" class="t" name="jsonabc1" placeholder="Paste your first unsorted JSON here" aria-label="Paste your first JSON here"
2024
spellcheck="false" required aria-required="true"></textarea>
21-
<textarea id="t2" class="t" name="jsonabc2" placeholder="Paste your second unsorted JSON here" aria-label="Paste your second unsorted JSON here"
25+
<textarea id="t2" class="t" name="jsonabc2" placeholder="Paste your second unsorted JSON here" aria-label="Paste your second JSON here"
2226
spellcheck="false" required aria-required="true"></textarea>
2327
</div>
2428
<div>
2529
<input type="submit" class="b" value="SORT and DIFF" data-Was-onclick="sort()">
2630
</div>
2731
</form>
28-
<p>
29-
<pre id="diff"></pre>
30-
</p>
31-
<p>
32-
<h3 class="c">
33-
<a href="https://github.com/ShivrajRath/jsonsortdiff" target="_blank">Github</a>&nbsp;&nbsp;&nbsp;
34-
<a class="h" target="_blank" href="https://www.buymeacoffee.com/rath">Buy me a coffee</a>&nbsp;&nbsp;&nbsp;
35-
</h3>
36-
</p>
32+
33+
<pre class="d h" id="diff">
34+
</pre>
35+
36+
<h3 class="c">
37+
<a href="https://github.com/ShivrajRath/jsonsortdiff" target="_blank">Github</a>&nbsp;&nbsp;&nbsp;
38+
<a class="s" target="_blank" href="https://www.buymeacoffee.com/rath">Buy me a coffee</a>&nbsp;&nbsp;&nbsp;
39+
</h3>
3740
</body>
3841

3942
</html>

main.js

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ function diffDisplay(str1, str2) {
2727

2828
display.appendChild(fragment);
2929

30+
display.classList.remove('h');
3031
location.hash = '#diff';
3132
}
3233

0 commit comments

Comments
 (0)