쿠폰폼에서 상품 회원 검색 창에서 스크롤바 표시되도록 수정

This commit is contained in:
chicpro
2013-07-01 15:12:17 +09:00
parent 7c871090aa
commit 6ca68274ea

View File

@ -162,7 +162,7 @@ $(function() {
change_type(cp_type);
});
/** select 변경때 반영하려면 주 제거
/** select 변경때 반영하려면 주 제거
$("#cp_method").change(function() {
var cp_method = $(this).val();
change_method(cp_method);
@ -176,7 +176,7 @@ $(function() {
$("#sch_target").click(function() {
var cp_method = $("#cp_method").val();
var opt = "left=50,top=50,width=500,height=600";
var opt = "left=50,top=50,width=520,height=600,scrollbars=1";
var url = "./coupontarget.php?sch_target=";
if(cp_method == "0") {
@ -194,7 +194,7 @@ $(function() {
return false;
}
var opt = "left=50,top=50,width=500,height=600";
var opt = "left=50,top=50,width=520,height=600,scrollbars=1";
var url = "./couponmember.php";
window.open(url, "win_member", opt);
});