Skip to content

Commit

Permalink
Test 4
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyeonchul committed Nov 8, 2023
1 parent c911b90 commit 7460545
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/profile_per.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ $.ajax({
*/
isFollow = data.user.is_following;
if (isFollow) {
$(".follow_btn").css("background-color", "rgba(217, 217, 217, 0.5)");
$(".follow_btn").css("color", "black");
} else {
$(".follow_btn").css("background-color", "#6970f2");
$(".follow_btn").css("color", "white");
} else {
$(".follow_btn").css("background-color", "rgba(217, 217, 217, 0.5)");
$(".follow_btn").css("color", "black");
}
$.each(data.badge.items, function (index, item) {
// 각각의 뱃지 아이템을 배열에 하나씩 푸쉬
Expand Down

0 comments on commit 7460545

Please sign in to comment.