팝업이 차단되어 있습니다. 차단을 해제해 주세요. alert 추가

This commit is contained in:
lch 2021-07-12 06:58:57 +00:00
parent 5e08267d78
commit 0959569606
1 changed files with 5 additions and 1 deletions

View File

@ -19,6 +19,10 @@
});
function certok3reqview(sel, reason, param1, param2) {
var popupWindow = window.open("/Account/CertOk3Req?sel=" + sel + "&reason=" + reason + (param1 ? "&param1=" + param1 : "") + (param2 ? "&param2=" + param2 : ""), "auth_popup", "width=450,height=640,scrollbar=yes,resizable=no");
popupWindow.focus();
if (popupWindow == null) {
msg("팝업이 차단되어 있습니다. 차단을 해제해 주세요.");
} else {
popupWindow.focus();
}
}
</script>