From 0959569606a0dd469b17da249fc5b8ec5506c9fa Mon Sep 17 00:00:00 2001 From: lch Date: Mon, 12 Jul 2021 06:58:57 +0000 Subject: [PATCH] =?UTF-8?q?=ED=8C=9D=EC=97=85=EC=9D=B4=20=EC=B0=A8?= =?UTF-8?q?=EB=8B=A8=EB=90=98=EC=96=B4=20=EC=9E=88=EC=8A=B5=EB=8B=88?= =?UTF-8?q?=EB=8B=A4.=20=EC=B0=A8=EB=8B=A8=EC=9D=84=20=ED=95=B4=EC=A0=9C?= =?UTF-8?q?=ED=95=B4=20=EC=A3=BC=EC=84=B8=EC=9A=94.=20alert=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FO/Views/Shared/Partial/OkCert3.cshtml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/FO/Views/Shared/Partial/OkCert3.cshtml b/FO/Views/Shared/Partial/OkCert3.cshtml index 7e4c1c7..5900718 100644 --- a/FO/Views/Shared/Partial/OkCert3.cshtml +++ b/FO/Views/Shared/Partial/OkCert3.cshtml @@ -19,6 +19,10 @@ }); function certok3reqview(sel, reason, param1, param2) { var popupWindow = window.open("/Account/CertOk3Req?sel=" + sel + "&reason=" + reason + (param1 ? "¶m1=" + param1 : "") + (param2 ? "¶m2=" + param2 : ""), "auth_popup", "width=450,height=640,scrollbar=yes,resizable=no"); - popupWindow.focus(); + if (popupWindow == null) { + msg("팝업이 차단되어 있습니다. 차단을 해제해 주세요."); + } else { + popupWindow.focus(); + } } \ No newline at end of file