From 711c1063147a0bdaf589223d335ec83f0679587f Mon Sep 17 00:00:00 2001 From: Eduardo Lundgren Date: Mon, 9 Jun 2008 06:53:37 +0000 Subject: [PATCH] Fixed draggable bug that affects the droppable critically - $.ui.ddmanager.current could not be null --- ui/ui.draggable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index ac60001c2..1e51048e6 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -236,7 +236,7 @@ $.widget("ui.draggable", $.extend($.ui.mouse, { clear: function() { this.helper.removeClass("ui-draggable-dragging"); if(this.options.helper != 'original' && !this.cancelHelperRemoval) this.helper.remove(); - if($.ui.ddmanager) $.ui.ddmanager.current = null; + //if($.ui.ddmanager) $.ui.ddmanager.current = null; this.helper = null; this.cancelHelperRemoval = false; }, -- 2.39.5