From: Scott González Date: Sun, 1 Feb 2009 00:55:34 +0000 (+0000) Subject: Sortable: Fixed #4017: Revert opacity after sort. X-Git-Tag: 1.6~130 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=39f80ebc6664dec2b2b1728df08383af70594a68;p=jquery-ui.git Sortable: Fixed #4017: Revert opacity after sort. --- diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js index 7330adb1d..4fc154719 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -937,7 +937,7 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { //Do what was originally in plugins if(this._storedCursor) $('body').css("cursor", this._storedCursor); //Reset cursor - if(this._storedOpacity) this.helper.css("opacity", this._storedCursor); //Reset cursor + if(this._storedOpacity) this.helper.css("opacity", this._storedOpacity); //Reset cursor if(this._storedZIndex) this.helper.css("zIndex", this._storedZIndex == 'auto' ? '' : this._storedZIndex); //Reset z-index this.dragging = false;