From f3737a91835f6b35b49a5b821e7cc555340c6057 Mon Sep 17 00:00:00 2001 From: whittet Date: Wed, 27 Apr 2011 07:21:29 -0700 Subject: [PATCH] Bug fix for another use case, see comment by whittet here: http://bugs.jqueryui.com/ticket/6702 (cherry picked from commit 2bf061ea6fd3bad7d6f5a77eebb22b7cc07140e4) --- ui/jquery.ui.sortable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.sortable.js b/ui/jquery.ui.sortable.js index aae7c6799..91a42658f 100644 --- a/ui/jquery.ui.sortable.js +++ b/ui/jquery.ui.sortable.js @@ -50,7 +50,7 @@ $.widget("ui.sortable", $.ui.mouse, { this.refresh(); //Let's determine if the items are being displayed horizontally - this.floating = this.items.length ? (/left|right/).test(this.items[0].item.css('float')) || (/inline|table-cell/).test(this.items[0].item.css('display')) : false; + this.floating = this.items.length ? o.axis === 'x' || (/left|right/).test(this.items[0].item.css('float')) || (/inline|table-cell/).test(this.items[0].item.css('display')) : false; //Let's determine the parent's offset this.offset = this.element.offset(); -- 2.39.5