사이드뷰 수정 작업 중

This commit is contained in:
chicpro
2013-01-31 18:23:16 +09:00
parent de5fe00a27
commit f19dccfda4
2 changed files with 47 additions and 10 deletions

View File

@ -567,4 +567,15 @@ $(function(){
win_poll(this.href);
return false;
});
// 사이드뷰
$('a.sv').click(function() {
$('.sv_wrap').hide();
$(this).find('.sv_wrap').show();
});
$(document).click(function() {
$('.sv_wrap').hide();
});
});