Draggable: Incase helper is not set to 'original' succeed with revert action even if the original element has been removed. Fixes #6871

This commit is contained in:
Christoph Burgdorf 2011-01-18 23:10:43 +01:00
parent 015ea163d1
commit 0ed452bf25

View File

@ -192,8 +192,8 @@ $.widget("ui.draggable", $.ui.mouse, {
this.dropped = false;
}
//if the original element is removed, don't bother to continue
if(!this.element[0] || !this.element[0].parentNode)
//if the original element is removed, don't bother to continue if helper is set to "original"
if((!this.element[0] || !this.element[0].parentNode) && this.options.helper == "original")
return false;
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))) {