aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.sortable.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/jquery.ui.sortable.js')
-rw-r--r--ui/jquery.ui.sortable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.sortable.js b/ui/jquery.ui.sortable.js
index c7794f06a..9c7bf446c 100644
--- a/ui/jquery.ui.sortable.js
+++ b/ui/jquery.ui.sortable.js
@@ -16,7 +16,7 @@
(function( $, undefined ) {
function isOverAxis( x, reference, size ) {
- return ( x > reference ) && ( x < ( reference + size ) );
+ return ( x >= reference ) && ( x < ( reference + size ) );
}
function isFloating(item) {