diff options
author | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-10-28 14:44:27 +0000 |
---|---|---|
committer | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-10-28 14:44:27 +0000 |
commit | fe12e22f47263a5956065c831cccf0f907c0177d (patch) | |
tree | bbe06297f06dca38848208ba3c3828d6fc3d09a0 /ui | |
parent | cd01814a85a765759f2e1205355514c75bcdfa2d (diff) | |
download | jquery-ui-fe12e22f47263a5956065c831cccf0f907c0177d.tar.gz jquery-ui-fe12e22f47263a5956065c831cccf0f907c0177d.zip |
Sortable - Float elements tolerance fixed
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.sortable.js | 2 |
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; } } |