관리자 주문내역 페이지 주문상품 레이어 자바스크립트 코드 수정
This commit is contained in:
@ -544,12 +544,14 @@ $(function(){
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 상품리스트 닫기
|
// 상품리스트 닫기
|
||||||
$(".orderitemlist-x").on("click", function() {
|
$("#sodr_list").on("click", "#orderitemlist-x", function(e) {
|
||||||
$("#orderitemlist").remove();
|
$("#orderitemlist").remove();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("body").on("click", function() {
|
$("body").on("click", function(e) {
|
||||||
$("#orderitemlist").remove();
|
if ($(e.target).closest("#orderitemlist").length === 0){
|
||||||
|
$("#orderitemlist").remove();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// 엑셀배송처리창
|
// 엑셀배송처리창
|
||||||
|
|||||||
Reference in New Issue
Block a user