From e0faff7e11772a56c2037e4269834c65d4a5d305 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Thu, 11 Mar 2010 16:57:10 +0000 Subject: [PATCH] reverted r3888 un-fixing #5322 for now as trunk is in release candidate state - only criticals and blockers should be fixed until 1.8 is final --- ui/jquery.ui.sortable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/jquery.ui.sortable.js b/ui/jquery.ui.sortable.js index 6b2573431..d29e708e8 100644 --- a/ui/jquery.ui.sortable.js +++ b/ui/jquery.ui.sortable.js @@ -270,8 +270,8 @@ $.widget("ui.sortable", $.ui.mouse, { this.positionAbs = this._convertPositionTo("absolute"); //Set the helper position - this.helper[0].style.left = this.options.axis == "y" ? this.originalPosition.left+'px' : this.position.left+'px'; - this.helper[0].style.top = this.options.axis == "x" ? this.originalPosition.top+'px' : this.position.top+'px'; + if(!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left+'px'; + if(!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top+'px'; //Rearrange for (var i = this.items.length - 1; i >= 0; i--) { -- 2.39.5