사용후기 상품문의 이미지 리사이즈 스크립트 추가

This commit is contained in:
chicpro
2013-10-02 15:47:01 +09:00
parent 6f57cde452
commit ecc8b3b5f4
9 changed files with 101 additions and 9 deletions

View File

@ -3,6 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
<link rel="stylesheet" href="<?php echo G5_SHOP_SKIN_URL; ?>/style.css">
<script src="<?php echo G5_JS_URL; ?>/iteminfoimageresize.js"></script>
<!-- 상품문의 목록 시작 { -->
<section id="sit_qa_list">
@ -110,7 +111,12 @@ $(function(){
$con.slideUp();
} else {
$(".sit_qa_con:visible").hide();
$con.slideDown();
$con.slideDown(
function() {
// 이미지 리사이즈
$con.iteminfoimageresize();
}
);
}
});