Skip to content

Commit

Permalink
Text 3
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyeonchul committed Nov 8, 2023
1 parent 2e096fc commit c911b90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/follow_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ $(document).on("click", ".item_following_btn", function (e) {
if ($(this).text() == "follow") {
followHandler($(this).attr("id").slice(3));
$(this).css({
"background-color": "rgba(217, 217, 217, 0.5)",
color: "#000",
"background-color": "#6970f2",
color: "white",
});
$(this).text("Following");
} else {
unfollowHandler($(this).attr("id").slice(3));
$(this).css({
"background-color": "#6970f2",
color: "white",
"background-color": "rgba(217, 217, 217, 0.5)",
color: "#000",
});
$(this).text("follow");
}
Expand Down

0 comments on commit c911b90

Please sign in to comment.