마수동, 광수동 수정 중
This commit is contained in:
@@ -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");
|
||||
},
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user