마수동, 광수동 수정 중

This commit is contained in:
2024-11-17 21:33:45 +09:00
parent d2a1e9fddf
commit 6f2e197911
8 changed files with 448 additions and 80 deletions

View File

@@ -1224,3 +1224,26 @@ $(document).on("click", ".refund-area .btn-fold", function () {
function truncateToTenwon(amount) {
return Math.floor(amount / 10) * 10;
}
//알럿 레이어 팝업 클로즈 스크립트
function close_alert_popup(popid) {
if (typeof popid === 'object') {
popupId = $(popid).parents('.alertPopup');
}else{
popupId = $(`#${popid}`);
}
popupId
.stop()
.animate(
{ opacity: "0" },
{
queue: true,
duration: 200,
easing: "easeInOutExpo",
complete: function () {
$(this).find(".popInner").css("top", "53%");
$(this).css("display", "none");
},
}
);
}