aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorEduardo Lundgren <eduardolundgren@gmail.com>2008-10-28 14:44:27 +0000
committerEduardo Lundgren <eduardolundgren@gmail.com>2008-10-28 14:44:27 +0000
commitfe12e22f47263a5956065c831cccf0f907c0177d (patch)
treebbe06297f06dca38848208ba3c3828d6fc3d09a0 /ui
parentcd01814a85a765759f2e1205355514c75bcdfa2d (diff)
downloadjquery-ui-fe12e22f47263a5956065c831cccf0f907c0177d.tar.gz
jquery-ui-fe12e22f47263a5956065c831cccf0f907c0177d.zip
Sortable - Float elements tolerance fixed
Diffstat (limited to 'ui')
-rw-r--r--ui/ui.sortable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js
index d1871c940..572725529 100644
--- a/ui/ui.sortable.js
+++ b/ui/ui.sortable.js
@@ -127,7 +127,7 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, {
var horizontalDirection = this._getDragHorizontalDirection();
if (this.floating) {
- if (isOverElementWidth) {
+ if (isOverElement) {
return horizontalDirection == "right" ? 2 : 1;
}
}