Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-92 committed Dec 15, 2024
1 parent b3b8f87 commit 852c805
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/atlas.html
Original file line number Diff line number Diff line change
Expand Up @@ -10762,27 +10762,27 @@ <h1>Not-Games</h1>
newLinks.push(anchor);
});
// 3kh0 lite
fetch("https://lite.3kh0.net/config/games.json")
.then((response) => response.json())
.then((data) => {
data.forEach((project) => {
const anchor = document.createElement('a');
anchor.href = 'https://lite.3kh0.net/'+project.link;
anchor.textContent = project.title + `~3kh0lite`;
anchor.style.display = 'block';
newLinks.push(anchor);

})})
.catch((error) => console.error("Error:", error));
fetch("https://lite.3kh0.net/config/games.json")
.then((response) => response.json())
.then((data) => {
data.forEach((project) => {
const anchor = document.createElement('a');
anchor.href = 'https://lite.3kh0.net/' + project.link;
anchor.textContent = project.title + `~3kh0lite`;
anchor.style.display = 'block';
newLinks.push(anchor);
});
}).then(() => {
// end of link dbs
const allLinks = sortLinksAlphabetically(newLinks);
const allLinks = sortLinksAlphabetically(newLinks);
console.log(allLinks)
const gamesList = document.getElementById('gamesList');
allLinks.forEach(link => {
if (!link.textContent.startsWith(".")) {
gamesList.appendChild(link);
}
});
});
);
})}).catch((error) => console.error("Error:", error));


let debounceTimeout;
let lastQuery = '';
Expand Down

0 comments on commit 852c805

Please sign in to comment.