|
|
@@ -1469,6 +1469,8 @@
|
|
|
|
|
|
$('.timer_box').css('display', 'none');
|
|
|
|
|
|
+
|
|
|
+
|
|
|
//공유 버튼 토글
|
|
|
$("button[data-name=openShare]").on("click", function(){
|
|
|
$(this).toggleClass("on").next(".shareWrap").toggleClass("on");
|
|
|
@@ -1746,6 +1748,8 @@
|
|
|
|
|
|
// ep 쿠폰확인
|
|
|
fnEpCouponDown([[${afLinkCd}]], [[${params.goodsCd}]], 1);
|
|
|
+
|
|
|
+
|
|
|
});
|
|
|
|
|
|
// 상품평 레이어 호출후 콜백에서 호출하므로 여기에 있어야함
|
|
|
@@ -1805,6 +1809,19 @@
|
|
|
// 이 부분에 적절한 fail-over 코드를 추가하여 주십시요.
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ // 상품상세 asis html 이지미 경로 수정
|
|
|
+ window.onload = function(){
|
|
|
+ $(".pd_descrp .cont_body").find('img').each(function() {
|
|
|
+ let tmpImgSrc = $(this).attr('src');
|
|
|
+ if (tmpImgSrc.indexOf('Upload') == 1 ){ // /Upload
|
|
|
+ $(this).attr('src' , tmpImgSrc.replace('/Upload', _imgUrl+"/Local"));
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/*]]>*/
|
|
|
</script>
|
|
|
|