사이드뷰 수정 작업 중

This commit is contained in:
chicpro
2013-01-31 18:36:14 +09:00
parent 51939a82c0
commit 3730858c48

View File

@ -569,13 +569,13 @@ $(function(){
}); });
// 사이드뷰 // 사이드뷰
$('a.sv').click(function() { $('.sv').click(function() {
$('.sv_wrap').hide(); $('.sv_wrap').hide();
$(this).find('.sv_wrap').show(); $(this).find('.sv_wrap').css("display", "block");
}); });
$(document).click(function() { $(document).click(function() {
$('.sv_wrap').hide(); // $('.sv_wrap').hide();
}); });
}); });