aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.core.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-11-17 07:31:03 -0800
committerScott González <scott.gonzalez@gmail.com>2011-11-17 07:31:03 -0800
commit69f6f585ae745af9d423151c7665b9f56f36d307 (patch)
tree8588fac1836d2085bebceea55400c38e898e5428 /ui/jquery.ui.core.js
parenta8a0b022cd6d21727900d335e534670165e7ddc2 (diff)
parentc3c84002898163c3c6625a4fedcddf1434f8e448 (diff)
downloadjquery-ui-69f6f585ae745af9d423151c7665b9f56f36d307.tar.gz
jquery-ui-69f6f585ae745af9d423151c7665b9f56f36d307.zip
Merge pull request #501 from maljub01/master
Fixed ticket #7800 - Draggable helper="clone" doesn't remove the dragged clone if original element is removed upon drop
Diffstat (limited to 'ui/jquery.ui.core.js')
-rw-r--r--ui/jquery.ui.core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js
index 8bcc4c441..f0cf89ba7 100644
--- a/ui/jquery.ui.core.js
+++ b/ui/jquery.ui.core.js
@@ -255,7 +255,7 @@ $.extend( $.ui, {
},
call: function( instance, name, args ) {
var set = instance.plugins[ name ];
- if ( !set || !instance.element[ 0 ].parentNode ) {
+ if ( !set || !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) {
return;
}