Skip to content

Commit dec3564

Browse files
Add favicon icon
1 parent 1608764 commit dec3564

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

img/favicon.png

1.18 KB
Loading

src/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Source+Code+Pro:wght@300&display=swap" rel="stylesheet">
2020
<script src="script.js"></script>
2121
<script src="notifications.js"></script>
22+
<link rel="icon" type="image/png" href="../img/favicon.png">
2223
</head>
2324

2425
<body id="body" onload="onBodyLoad()">

src/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ const toggleAsn1Button = () => {
227227
const outType = document.getElementById('outType').value;
228228

229229
if (outType === 'hex' || outType === 'base64') {
230-
document.getElementById('asn1Tool').classList.remove("hide");
230+
document.getElementById('asn1Tool').classList.remove('hide');
231231
} else {
232232
document.getElementById('asn1Tool').classList.add('hide');
233233
}

0 commit comments

Comments
 (0)