diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-09-01 14:49:28 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-09-01 14:49:28 +0000 |
commit | ef599c7225142df637830822f437fe134c386715 (patch) | |
tree | 048a8bd303f044bbf9336c9b58ba849ebd095146 /ui | |
parent | 0dc97f1d2bf67bd5c5c4e98852b20c5597c87bd7 (diff) | |
download | jquery-ui-ef599c7225142df637830822f437fe134c386715.tar.gz jquery-ui-ef599c7225142df637830822f437fe134c386715.zip |
draggable: wrong class when trying to remove iframeFix divs (fixes #3161)
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.draggable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index 82feaf2e2..1e794297d 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -331,7 +331,7 @@ $.ui.plugin.add("draggable", "iframeFix", { }); }, 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 } }); |