G4 경로 설정 수정

This commit is contained in:
chicpro
2013-01-31 15:25:25 +09:00
parent c4e8b73845
commit 119a3b0e61
3 changed files with 38 additions and 38 deletions

View File

@ -41,7 +41,7 @@ if(!$ct_count) {
}
$g4['title'] = '선택사항/수량 변경';
include_once ($g4['path'].'/head.sub.php');
include_once (G4_PATH.'/head.sub.php');
?>
<style type="text/css">
@ -193,10 +193,10 @@ $(function() {
if((idx + 1) < option_count) {
if(val == '') {
var $gt_select = $("select[name^=item-option-]:gt(" + idx + ")");
$gt_select.val("");
$gt_select.attr("disabled", true);
$("select[name^=item-option-]:gt(" + idx + ")").val("").attr("disabled", true);
} else {
$("select[name^=item-option-]:gt(" + idx + ")").val("").attr("disabled", true);
var $next_select = $option_select.eq(idx + 1);
// 옵션정보갱신
@ -510,5 +510,5 @@ function calculatePrice()
</script>
<?php
include_once($g4['path'] . '/tail.sub.php');
include_once(G4_PATH.'/tail.sub.php');
?>