Skip to content

Commit

Permalink
Delete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rhirano0715 committed Aug 19, 2023
1 parent 8d357b1 commit 036f358
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,26 +52,6 @@
let isPaused = false;
let timeout;

// // Fetch the TSV file using fetch() and convert it to a text string using text()
// fetch('wordlist.tsv')
// .then(response => response.text())
// .then(data => {
// // Split the text string into an array of rows using split()
// const rows = data.split('\n');

// // Loop through the rows and split each row into an array of columns using split()
// for (let i = 0; i < rows.length; i++) {
// const columns = rows[i].split('\t');

// // Create an object with keys for type and word and push it to the wordList array
// wordList.push({
// type: columns[0],
// word: columns[1]
// });
// }
// })
// .catch(error => console.error(error));

function initAnimation() {
setTimeout(() => {
// Fetch the TSV file using fetch() and convert it to a text string using text()
Expand Down

0 comments on commit 036f358

Please sign in to comment.