Skip to content

Commit

Permalink
draggable: revert option now accepts "invalid", "valid" and true as p…
Browse files Browse the repository at this point in the history
…ossible options: true always reverts, "invalid" only reverts when not dropped on a possible target, and "valid" does the contrary (implements #2914)
  • Loading branch information
Paul Bakaus committed Jul 3, 2008
1 parent 069fcab commit 7c5e5d9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ui/ui.draggable.js
Expand Up @@ -216,10 +216,11 @@ $.widget("ui.draggable", $.extend($.ui.mouse, {
mouseStop: function(e) {

//If we are using droppables, inform the manager about the drop
var dropped = false;
if ($.ui.ddmanager && !this.options.dropBehaviour)
$.ui.ddmanager.drop(this, e);
if(this.options.revert) {
var dropped = $.ui.ddmanager.drop(this, e);

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() {
self.propagate("stop", e);
Expand Down

0 comments on commit 7c5e5d9

Please sign in to comment.