Merge branch 'develop' of github.com:xpressengine/xe-core into develop

This commit is contained in:
bnu 2015-04-07 14:22:24 +09:00
commit 801198bdba
5 changed files with 11 additions and 12 deletions

View file

@ -63,11 +63,10 @@
// login popup
$hoverEl.on('mouseenter mouseleave focusin focusout',function(e){
e.preventDefault();
$this = $(this);
if(e.type == 'mouseenter' || e.type == 'focusin'){
$this.addClass('on');
$(this).addClass('on');
} else {
$this.removeClass('on');
$(this).removeClass('on');
}
});