aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.droppable.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/jquery.ui.droppable.js')
-rw-r--r--ui/jquery.ui.droppable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.droppable.js b/ui/jquery.ui.droppable.js
index 6bc4b594d..808009dc1 100644
--- a/ui/jquery.ui.droppable.js
+++ b/ui/jquery.ui.droppable.js
@@ -17,7 +17,7 @@
(function( $, undefined ) {
function isOverAxis( x, reference, size ) {
- return ( x > reference ) && ( x < ( reference + size ) );
+ return ( x >= reference ) && ( x < ( reference + size ) );
}
$.widget("ui.droppable", {