diff --git a/FO/Views/My/MyInfoCheck.cshtml b/FO/Views/My/MyInfoCheck.cshtml index 345a842..e2bda4b 100644 --- a/FO/Views/My/MyInfoCheck.cshtml +++ b/FO/Views/My/MyInfoCheck.cshtml @@ -290,7 +290,7 @@ } function cancelSnsLink() { - confirmtoggle(true, "SNS 연동해제 하시겠습니까?", "snsLink()"); + confirmtoggle(true, "SNS 연동을 해제 하시겠습니까?", "snsLink()"); } function snsLink() { capp("/focommon/SnsLink", { snsid: null, jointype: 0 }, "afterSnsLink"); @@ -307,13 +307,19 @@ } function confirmSns(jointype) { if (jointype == 1) { - confirmtoggle(true, "구글 아이디로 연동하시겠습니까?", "loginWithGoogle()"); + if (confirm("구글 아이디로 연동하시겠습니까?")) { + loginWithGoogle(); + } } else if (jointype == 2) { - confirmtoggle(true, "네이버 아이디로 연동하시겠습니까?", "loginWithNaver()"); + if (confirm("네이버 아이디로 연동하시겠습니까?")) { + loginWithNaver(); + } } else if (jointype == 3) { - confirmtoggle(true, "카카오 아이디로 연동하시겠습니까?", "loginWithKakao()"); + if (confirm("카카오 아이디로 연동하시겠습니까?")) { + loginWithKakao(); + } } } var gauth;