mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 14:19:58 +09:00
코딩 컨벤션 수정.
This commit is contained in:
parent
29fc2138a0
commit
a211f3d0d0
1 changed files with 5 additions and 5 deletions
|
|
@ -156,9 +156,9 @@
|
||||||
|
|
||||||
$(document).bind('dragover', function (e) {
|
$(document).bind('dragover', function (e) {
|
||||||
var timeout = window.dropZoneTimeout,
|
var timeout = window.dropZoneTimeout,
|
||||||
dropZone = self.settings.dropZone;
|
dropZone = self.settings.dropZone;
|
||||||
if (!timeout) {
|
if (!timeout) {
|
||||||
dropZone.addClass('in');
|
dropZone.addClass('in');
|
||||||
} else {
|
} else {
|
||||||
clearTimeout(timeout);
|
clearTimeout(timeout);
|
||||||
}
|
}
|
||||||
|
|
@ -172,13 +172,13 @@
|
||||||
node = node.parentNode;
|
node = node.parentNode;
|
||||||
} while (node != null);
|
} while (node != null);
|
||||||
if (found) {
|
if (found) {
|
||||||
dropZone.addClass('hover');
|
dropZone.addClass('hover');
|
||||||
} else {
|
} else {
|
||||||
dropZone.removeClass('hover');
|
dropZone.removeClass('hover');
|
||||||
}
|
}
|
||||||
window.dropZoneTimeout = setTimeout(function () {
|
window.dropZoneTimeout = setTimeout(function () {
|
||||||
window.dropZoneTimeout = null;
|
window.dropZoneTimeout = null;
|
||||||
dropZone.removeClass('in hover');
|
dropZone.removeClass('in hover');
|
||||||
}, 100);
|
}, 100);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue