draggable: wrong class when trying to remove iframeFix divs (fixes #3161)

This commit is contained in:
Paul Bakaus 2008-09-01 14:49:28 +00:00
parent 0dc97f1d2b
commit ef599c7225

View File

@ -331,7 +331,7 @@ $.ui.plugin.add("draggable", "iframeFix", {
}); });
}, },
stop: function(e, ui) { stop: function(e, ui) {
$("div.DragDropIframeFix").each(function() { this.parentNode.removeChild(this); }); //Remove frame helpers $("div.ui-draggable-iframeFix").each(function() { this.parentNode.removeChild(this); }); //Remove frame helpers
} }
}); });