mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
로그인 후 header 프사에 마우스 오버시에 회원메뉴 안뜨는 오류 수정
This commit is contained in:
parent
851f44cada
commit
d6bcd43964
3 changed files with 3028 additions and 0 deletions
|
|
@ -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')){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue