|
|
@@ -311,9 +311,9 @@ $(document).ready( function() {
|
|
|
});
|
|
|
|
|
|
//통합검색 - 레이어 열고닫기
|
|
|
- $(document).on('click','.common_header .search .promotion_search, .common_header .search .btn_open_search',function(e){
|
|
|
- $('body').addClass('lock');
|
|
|
- $("#header .common_search").addClass('active');
|
|
|
+ //210420_수정 : 검색창 호출 스크립트 수정.
|
|
|
+ $(document).on('click','.common_header.main_header .search .promotion_search, .common_header.main_header .search .btn_open_search',function(e){
|
|
|
+ location.href='sch_result.html';
|
|
|
return false;
|
|
|
}).on('click','.common_search .btn_close_search',function(e){
|
|
|
$("#header .common_search").removeClass('active');
|
|
|
@@ -540,7 +540,7 @@ $(document).ready( function() {
|
|
|
$(document).ready( function() {
|
|
|
|
|
|
//팝업 - 상품썸네일 크게보기
|
|
|
- $(document).on('click','.pd_detail .area_pic .thumb_list_wrap ul li',function(e){
|
|
|
+ $(document).on('click','.pd_detail .area_pic .thumb_list_wrap ul li a',function(e){
|
|
|
$('body').addClass('lock');
|
|
|
$("#pdItemThumbPop .full_pop_container").empty();
|
|
|
var thumbIndex = $(this).index() + 1;
|
|
|
@@ -663,7 +663,7 @@ $(document).ready( function() {
|
|
|
$(this).parent('.swiper-slide').addClass('on');
|
|
|
targetThumb.siblings('li').removeClass('on');
|
|
|
targetThumb.addClass('on');
|
|
|
- $('html,body').animate({scrollTop : topThumb}, 500);
|
|
|
+ $('html,body').animate({scrollTop : topThumb}, 100);
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
@@ -671,7 +671,10 @@ $(document).ready( function() {
|
|
|
/* 상품상세 > 상품문의 _accordion */
|
|
|
$(document).on('click','.pd_qnalist .foldGroup .fold_head',function(e){
|
|
|
if($(this).parent().hasClass('secret_qna')){
|
|
|
- alert('비밀글은 열람하실 수 없습니다.');
|
|
|
+ //210420_수정 : dialog alert 변경.
|
|
|
+ mcxDialog.alert("비밀글은 열람하실 수 없습니다.", {
|
|
|
+ sureBtnText: "확인",
|
|
|
+ });
|
|
|
}else {
|
|
|
$(this).parents('.foldGroup li').find('.fold_cont').slideToggle(100);
|
|
|
$(this).toggleClass('on');
|