Skip to content

Commit b0c96c4

Browse files
committed
fix: make doc references relative
1 parent f8e6377 commit b0c96c4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
content="Encode data to a provided output alphabet."
1111
/>
1212
</head>
13-
<link rel="stylesheet" href="/style.css" />
13+
<link rel="stylesheet" href="./style.css" />
1414

1515
<body>
1616
<div class="hero">
@@ -58,7 +58,7 @@ <h2>Try it</h2>
5858
</div>
5959
</div>
6060

61-
<script src="/codeset.umd.js"></script>
61+
<script src="./codeset.umd.js"></script>
6262
<script>
6363
const { alphabet, codeset } = window.codeset
6464

@@ -82,7 +82,6 @@ <h2>Try it</h2>
8282

8383
predefinedInput.addEventListener('change', () => {
8484
const val = predefinedInput.value
85-
console.log(val)
8685
if (Array.isArray(window.codeset[val])) {
8786
alphabetInput.value = window.codeset[val].join('')
8887
alphabetInput.change()

0 commit comments

Comments
 (0)