aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.draggable.js
diff options
context:
space:
mode:
authorEduardo Lundgren <eduardolundgren@gmail.com>2008-06-09 06:53:37 +0000
committerEduardo Lundgren <eduardolundgren@gmail.com>2008-06-09 06:53:37 +0000
commit711c1063147a0bdaf589223d335ec83f0679587f (patch)
tree16f5dad4011120ff1442675a29bc0f0b63dc789d /ui/ui.draggable.js
parent58e23c8228a8a82a480c9e7614b85988755a909c (diff)
downloadjquery-ui-711c1063147a0bdaf589223d335ec83f0679587f.tar.gz
jquery-ui-711c1063147a0bdaf589223d335ec83f0679587f.zip
Fixed draggable bug that affects the droppable critically - $.ui.ddmanager.current could not be null
Diffstat (limited to 'ui/ui.draggable.js')
-rw-r--r--ui/ui.draggable.js2
1 files changed, 1 insertions, 1 deletions
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;
},