Skip to content

Commit

Permalink
πŸŽ†πŸŽ†πŸŽ†
Browse files Browse the repository at this point in the history
  • Loading branch information
pirateIV committed Aug 26, 2023
1 parent 0a9441e commit 1564244
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
14 changes: 1 addition & 13 deletions html/pages.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,7 @@ <h2 class="cast-name text-white"></h2>

<div class="tab-content d-none flex-wrap justify-content-center align-items-center gap-2" id="tab1"> </div>
<div class="tab-content d-flex flex-column gap-3" id="tab2">
<section class="container d-flex flex-column gap-2">
<div class="d-block p-3 bg-secondary rounded-3">
<div class="credit-titl">
<h4>The One who must not be seedn</h4>
</div>
</div>
<div class="d-block p-3 bg-secondary rounded-3"></div>
<div class="d-block p-3 bg-secondary rounded-3"></div>
<div class="d-block p-3 bg-secondary rounded-3"></div>
<div class="d-block p-3 bg-secondary rounded-3"></div>
<div class="d-block p-3 bg-secondary rounded-3"></div>
<div class="d-block p-3 bg-secondary rounded-3"></div>
<div class="d-block p-3 bg-secondary rounded-3"></div>


</section>
</div>
Expand Down
2 changes: 1 addition & 1 deletion js/movies.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ async function getMovieDetails(mov_detail_id) {
movPoster.style.backgroundImage = `url(${img_path + poster_path})`;
}

async function getSimilarMovies(similar_id) {
async function getSimilarMovies(similar_id) {
const resp = await fetch(
`https://api.themoviedb.org/3/movie/${similar_id}/similar?api_key=${api_key}`
);
Expand Down
4 changes: 4 additions & 0 deletions js/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ async function getCastInfo(id) {
console.log(castDetailsDATA);

getCastCredits(castCreditsDATA);
getCombCredits(combCreditsDATA)

const {
name,
Expand Down Expand Up @@ -123,3 +124,6 @@ async function getCastCredits(castCreditsDATA) {
});
}

async function getCombCredits(combCreditsDATA){
console.log(combCreditsDATA)
}

0 comments on commit 1564244

Please sign in to comment.