resizable method destroy: put unwrapped original element in wrapper's place instead of at the end of wrapper's parent. Fixes #4940 - resizable('destroy') moves images to end of parent element

This commit is contained in:
Richard Worth 2010-02-03 01:22:02 +00:00
parent 30578eb028
commit ec5e7ad95b
2 changed files with 33 additions and 2 deletions

View File

@ -0,0 +1,31 @@
<!doctype html>
<html lang="en">
<head>
<title>Resizable Visual Test : Resizable ticket #4940</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
<script type="text/javascript" src="../../../jquery-1.4.1.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script>
<script type="text/javascript">
$(function() {
$("#resizable").resizable().resizable('destroy');
});
</script>
</head>
<body>
<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/4940">#4940 - resizable('destroy') moves images to end of parent element</a></h1>
before
<textarea id="resizable"></textarea>
after
</div>
</body>
</html>

View File

@ -204,7 +204,7 @@ $.widget("ui.resizable", $.ui.mouse, {
if (this.elementIsWrapper) {
_destroy(this.element);
var wrapper = this.element;
wrapper.parent().append(
wrapper.after(
this.originalElement.css({
position: wrapper.css('position'),
width: wrapper.outerWidth(),
@ -212,7 +212,7 @@ $.widget("ui.resizable", $.ui.mouse, {
top: wrapper.css('top'),
left: wrapper.css('left')
})
).end().remove();
).remove();
}
this.originalElement.css('resize', this.originalResizeStyle);