From 9c0942d14f25909bf8e3b8064965323c280f4274 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Thu, 18 Sep 2008 09:51:50 +0000 Subject: droppable: $.ui.ddmanager.drop now returns false in case of non-drop, or the actual droppable (instead of true) in the case of a drop. draggable: implemented patch that allows revert to be a callback, receives one argument which is the droppable (implements #3175) --- ui/ui.draggable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/ui.draggable.js') diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index 1179c7df8..fa8fbc611 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -309,7 +309,7 @@ $.widget("ui.draggable", $.extend({}, $.ui.mouse, { if ($.ui.ddmanager && !this.options.dropBehaviour) var dropped = $.ui.ddmanager.drop(this, e); - if((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true) { + if((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) { var self = this; $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10) || 500, function() { self._propagate("stop", e); -- cgit v1.2.3