로그인 후 header 프사에 마우스 오버시에 회원메뉴 안뜨는 오류 수정

This commit is contained in:
dlehdanakf 2015-07-06 10:53:46 +09:00
parent 851f44cada
commit d6bcd43964
3 changed files with 3028 additions and 0 deletions

View file

@ -38,6 +38,15 @@
});
$(window).triggerHandler('scroll');
}
// login popup
$hoverEl.on('mouseenter mouseleave focusin focusout',function(e){
e.preventDefault();
if(e.type == 'mouseenter' || e.type == 'focusin'){
$(this).addClass('on');
} else {
$(this).removeClass('on');
}
});
// Search
$searchEl.click(function(){
if($searchForm.is(':hidden')){