Skip to content

Commit

Permalink
Sortable - Float elements tolerance fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardolundgren committed Oct 28, 2008
1 parent cd01814 commit fe12e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/ui.sortable.js
Expand Up @@ -127,7 +127,7 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, {
var horizontalDirection = this._getDragHorizontalDirection(); var horizontalDirection = this._getDragHorizontalDirection();


if (this.floating) { if (this.floating) {
if (isOverElementWidth) { if (isOverElement) {
return horizontalDirection == "right" ? 2 : 1; return horizontalDirection == "right" ? 2 : 1;
} }
} }
Expand Down

0 comments on commit fe12e22

Please sign in to comment.