aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.sortable.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2009-02-01 00:55:34 +0000
committerScott González <scott.gonzalez@gmail.com>2009-02-01 00:55:34 +0000
commit39f80ebc6664dec2b2b1728df08383af70594a68 (patch)
tree3f2c55aff701efe27f7166d10f06e1aa736f0439 /ui/ui.sortable.js
parent79d2a2891aff472b271f23dfc3b3618c906b3d76 (diff)
downloadjquery-ui-39f80ebc6664dec2b2b1728df08383af70594a68.tar.gz
jquery-ui-39f80ebc6664dec2b2b1728df08383af70594a68.zip
Sortable: Fixed #4017: Revert opacity after sort.
Diffstat (limited to 'ui/ui.sortable.js')
-rw-r--r--ui/ui.sortable.js2
1 files changed, 1 insertions, 1 deletions
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;