#285 모바일 배송지 이력 추가

This commit is contained in:
chicpro
2013-09-04 13:15:57 +09:00
parent c0eb90225a
commit 6cde376b55
5 changed files with 337 additions and 1 deletions

View File

@ -706,7 +706,10 @@ function get_intall_file()
?>
<tr>
<th scope="row">배송지선택</th>
<td><?php echo $addr_list; ?></td>
<td>
<?php echo $addr_list; ?>
<a href="<?php echo G4_SHOP_URL; ?>/orderaddress.php" id="order_address">배송지목록</a>
</td>
</tr>
<tr>
<th scope="row"><label for="ad_subject">배송지명</label></th>
@ -1269,6 +1272,13 @@ $(function() {
}
}
});
// 배송지목록
$("#order_address").on("click", function() {
var url = this.href;
window.open(url, "win_address", "left=100,top=100,width=650,height=500,scrollbars=1");
return false;
});
});
function coupon_cancel($el)