mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Dialog: Remove width, min-height, height styles on destroy. Fixes #8119 - Dialog: Destroying a dialog leaves some styles changed.
This commit is contained in:
parent
975bde542b
commit
3c2acc3227
@ -35,6 +35,11 @@ test("init", function() {
|
||||
|
||||
test("destroy", function() {
|
||||
expect( 6 );
|
||||
|
||||
// Dialogs are expected to be hidden on destroy, so make sure they're hidden
|
||||
// before the test
|
||||
$( "#dialog1, #form-dialog" ).hide();
|
||||
|
||||
domEqual( "#dialog1", function() {
|
||||
var dialog = $( "#dialog1" ).dialog().dialog( "destroy" );
|
||||
equal( dialog.parent()[ 0 ], $( "#qunit-fixture" )[ 0 ] );
|
||||
|
@ -212,7 +212,7 @@ window.domEqual = function( selector, modifier, message ) {
|
||||
"tabIndex",
|
||||
"title"
|
||||
];
|
||||
/*
|
||||
|
||||
function getElementStyles( elem ) {
|
||||
var key, len,
|
||||
style = elem.ownerDocument.defaultView ?
|
||||
@ -239,7 +239,7 @@ window.domEqual = function( selector, modifier, message ) {
|
||||
|
||||
return styles;
|
||||
}
|
||||
*/
|
||||
|
||||
function extract( elem ) {
|
||||
if ( !elem || !elem.length ) {
|
||||
QUnit.push( false, actual, expected,
|
||||
@ -257,8 +257,7 @@ window.domEqual = function( selector, modifier, message ) {
|
||||
var value = elem.attr( attr );
|
||||
result[ attr ] = value !== undefined ? value : "";
|
||||
});
|
||||
// TODO: Enable when we can figure out what's happening with accordion
|
||||
//result.style = getElementStyles( elem[ 0 ] );
|
||||
result.style = getElementStyles( elem[ 0 ] );
|
||||
result.events = $._data( elem[ 0 ], "events" );
|
||||
result.data = $.extend( {}, elem.data() );
|
||||
delete result.data[ $.expando ];
|
||||
|
5
ui/jquery.ui.dialog.js
vendored
5
ui/jquery.ui.dialog.js
vendored
@ -127,6 +127,11 @@ $.widget("ui.dialog", {
|
||||
this.element
|
||||
.removeUniqueId()
|
||||
.removeClass( "ui-dialog-content ui-widget-content" )
|
||||
.css({
|
||||
width: "",
|
||||
minHeight: "",
|
||||
height: ""
|
||||
})
|
||||
.hide()
|
||||
// without detaching first, the following becomes really slow
|
||||
.detach();
|
||||
|
Loading…
Reference in New Issue
Block a user