Skip to content

Commit 13add9a

Browse files
committedMar 23, 2024·
Updates API endpoint
1 parent f43eff4 commit 13add9a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎anime-quotes-api/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# anime-quotes-api

‎anime-quotes-api/js/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ let radioVariable = "";
33
let inputVariable = "";
44
let arrPosition = 0;
55
let jsonData = {};
6-
let url = "https://animechan.vercel.app/api/"
6+
let url = "https://animechan.xyz/api/"
77
const anime = document.querySelector(".anime")
88
const character = document.querySelector(".character")
99
const quote = document.querySelector(".quote")
@@ -112,4 +112,4 @@ function showAllAnime() {
112112

113113
document.querySelector('#getQuote').addEventListener('click', checkInputs);
114114
document.querySelector('#cycleQuote').addEventListener('click', cycleQuotes);
115-
document.querySelector('#showAll').addEventListener('click', showAllAnime);
115+
document.querySelector('#showAll').addEventListener('click', showAllAnime);

0 commit comments

Comments
 (0)
Please sign in to comment.