mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
draggable: wrong class when trying to remove iframeFix divs (fixes #3161)
This commit is contained in:
parent
0dc97f1d2b
commit
ef599c7225
@ -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
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user