Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
|
@@ -38,7 +38,7 @@
|
|
| 38 |
let jsonObjects;
|
| 39 |
|
| 40 |
async function fetchData() {
|
| 41 |
-
const response = await fetch('
|
| 42 |
const data = await response.text();
|
| 43 |
jsonObjects = data.split('\n').filter(Boolean).map(JSON.parse);
|
| 44 |
}
|
|
|
|
| 38 |
let jsonObjects;
|
| 39 |
|
| 40 |
async function fetchData() {
|
| 41 |
+
const response = await fetch('characters.output.manually'); // Replace 'your_data_file.txt' with the correct path
|
| 42 |
const data = await response.text();
|
| 43 |
jsonObjects = data.split('\n').filter(Boolean).map(JSON.parse);
|
| 44 |
}
|