Skip to content

Commit

Permalink
Updates API endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
fullStackRacc committed Mar 23, 2024
1 parent f43eff4 commit 13add9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions anime-quotes-api/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# anime-quotes-api
4 changes: 2 additions & 2 deletions anime-quotes-api/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ let radioVariable = "";
let inputVariable = "";
let arrPosition = 0;
let jsonData = {};
let url = "https://animechan.vercel.app/api/"
let url = "https://animechan.xyz/api/"
const anime = document.querySelector(".anime")
const character = document.querySelector(".character")
const quote = document.querySelector(".quote")
Expand Down Expand Up @@ -112,4 +112,4 @@ function showAllAnime() {

document.querySelector('#getQuote').addEventListener('click', checkInputs);
document.querySelector('#cycleQuote').addEventListener('click', cycleQuotes);
document.querySelector('#showAll').addEventListener('click', showAllAnime);
document.querySelector('#showAll').addEventListener('click', showAllAnime);

0 comments on commit 13add9a

Please sign in to comment.