diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-01-15 23:19:27 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-01-15 23:19:27 +0000 |
commit | 358be8bd46ca81f16f4ca8215d35118c22b1d86d (patch) | |
tree | 1b1a3d259e4521916f7ec4d510ff5201f43d5ea7 /ui/ui.draggable.js | |
parent | c1b698bb55adcf853e80ee3da0221e7a69dd1df2 (diff) | |
download | jquery-ui-358be8bd46ca81f16f4ca8215d35118c22b1d86d.tar.gz jquery-ui-358be8bd46ca81f16f4ca8215d35118c22b1d86d.zip |
Draggable: Fixed # 3808: Setting default opacity to null (preserve current opacity).
Diffstat (limited to 'ui/ui.draggable.js')
-rw-r--r-- | ui/ui.draggable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index 15d6cf440..a1d17aef4 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -410,7 +410,7 @@ $.extend($.ui.draggable, { handle: false, helper: "original", iframeFix: false, - opacity: 1, + opacity: null, refreshPositions: false, revert: false, revertDuration: 500, |