From 79b2643a087bf04b4b375839e758bcac2348979c Mon Sep 17 00:00:00 2001 From: UPGLE Date: Tue, 7 Apr 2015 14:22:05 +0900 Subject: [PATCH] =?UTF-8?q?=20#1354=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20?= =?UTF-8?q?=EC=98=81=EC=97=AD=20=EC=84=9C=EB=B8=8C=20=EB=A9=94=EB=89=B4?= =?UTF-8?q?=EA=B0=80=20=EC=95=88=EB=82=98=EC=98=A4=EB=8A=94=20=EC=9D=B4?= =?UTF-8?q?=EC=8A=88=20=EC=B2=98=EB=A6=AC.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layouts/xedition/js/layout.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/layouts/xedition/js/layout.js b/layouts/xedition/js/layout.js index 0c58a03be..b363808a1 100644 --- a/layouts/xedition/js/layout.js +++ b/layouts/xedition/js/layout.js @@ -64,11 +64,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'); } });