mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Dialog: Added a class to dialog wrapper when it is currently displaying buttons, includes unit tests for changes. Fixed #7057 - An extra class is needed on the dialog wrapper to specify when a buttonset is showing
This commit is contained in:
parent
5c6afa8e7b
commit
15c97e0b76
@ -18,7 +18,7 @@ test("autoOpen", function() {
|
||||
});
|
||||
|
||||
test("buttons", function() {
|
||||
expect(17);
|
||||
expect(21);
|
||||
|
||||
var buttons = {
|
||||
"Ok": function(ev, ui) {
|
||||
@ -44,6 +44,8 @@ test("buttons", function() {
|
||||
});
|
||||
|
||||
ok(btn.parent().hasClass('ui-dialog-buttonset'), "buttons in container");
|
||||
ok(el.parent().hasClass('ui-dialog-buttons'), "dialog wrapper adds class about having buttons");
|
||||
|
||||
btn.trigger("click");
|
||||
|
||||
var newButtons = {
|
||||
@ -67,6 +69,12 @@ test("buttons", function() {
|
||||
equals(btn.eq(i).text(), key, "text of button " + (i+1));
|
||||
i += 1;
|
||||
});
|
||||
|
||||
el.dialog("option", "buttons", null);
|
||||
btn = $("button", dlg());
|
||||
equals(btn.length, 0, "all buttons have been removed");
|
||||
equals(el.find(".ui-dialog-buttonset").length, 0, "buttonset has been removed");
|
||||
equals(el.parent().hasClass('ui-dialog-buttons'), false, "dialog wrapper removes class about having buttons");
|
||||
|
||||
el.remove();
|
||||
});
|
||||
|
3
ui/jquery.ui.dialog.js
vendored
3
ui/jquery.ui.dialog.js
vendored
@ -353,7 +353,10 @@ $.widget("ui.dialog", {
|
||||
button.button();
|
||||
}
|
||||
});
|
||||
self.uiDialog.addClass( "ui-dialog-buttons" );
|
||||
uiDialogButtonPane.appendTo( self.uiDialog );
|
||||
} else {
|
||||
self.uiDialog.removeClass( "ui-dialog-buttons" );
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user