#197 옵션 미선택시 false 표시되는 오류 수정

This commit is contained in:
chicpro
2013-05-28 12:49:51 +09:00
parent 2c052fc63d
commit 3df6a6e890

View File

@ -644,7 +644,7 @@ else
if($(".sit_opt_list").size() < 1) if($(".sit_opt_list").size() < 1)
{ {
alert("상품의 선택옵션을 선택해 주십시오."); alert("상품의 선택옵션을 선택해 주십시오.");
return false; return;
} }
if (act == "direct_buy") { if (act == "direct_buy") {
@ -677,7 +677,7 @@ else
}); });
if(!result) if(!result)
return false; return;
f.submit(); f.submit();
} }