diff options
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 3ee2a46a6..80024a4d6 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -219,7 +219,7 @@ $.widget("ui.draggable", $.extend({}, $.ui.mouse, { if((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true) { var self = this; - $(this.helper).animate(this.originalPosition, parseInt(this.options.revert, 10) || 500, function() { + $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10) || 500, function() { self.propagate("stop", e); self.clear(); }); |