From a211f3d0d0141516cdd2fc88b6882bb7ec0fd1e2 Mon Sep 17 00:00:00 2001 From: UPGLE Date: Wed, 3 Jun 2015 14:39:36 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=94=EB=94=A9=20=EC=BB=A8=EB=B2=A4?= =?UTF-8?q?=EC=85=98=20=EC=88=98=EC=A0=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/js/plugins/jquery.fileupload/js/main.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/js/plugins/jquery.fileupload/js/main.js b/common/js/plugins/jquery.fileupload/js/main.js index 15b034569..afa7377ab 100644 --- a/common/js/plugins/jquery.fileupload/js/main.js +++ b/common/js/plugins/jquery.fileupload/js/main.js @@ -156,9 +156,9 @@ $(document).bind('dragover', function (e) { var timeout = window.dropZoneTimeout, - dropZone = self.settings.dropZone; + dropZone = self.settings.dropZone; if (!timeout) { - dropZone.addClass('in'); + dropZone.addClass('in'); } else { clearTimeout(timeout); } @@ -172,13 +172,13 @@ node = node.parentNode; } while (node != null); if (found) { - dropZone.addClass('hover'); + dropZone.addClass('hover'); } else { - dropZone.removeClass('hover'); + dropZone.removeClass('hover'); } window.dropZoneTimeout = setTimeout(function () { window.dropZoneTimeout = null; - dropZone.removeClass('in hover'); + dropZone.removeClass('in hover'); }, 100); }); },