diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2014-12-03 11:23:59 -0500 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-03-11 16:04:11 -0400 |
commit | 6f4884f6f5b422bacbb20dbd82d90d351a985a4b (patch) | |
tree | 5031a8fed24efe4883150d313b6863e9e36f9b81 /tests/unit/dialog/dialog_common.js | |
parent | cff1fb2a13e18403c02ba516e08db3a5b21a8b6c (diff) | |
download | jquery-ui-6f4884f6f5b422bacbb20dbd82d90d351a985a4b.tar.gz jquery-ui-6f4884f6f5b422bacbb20dbd82d90d351a985a4b.zip |
Dialog: Add classes option
Ref #7053
Ref gh-1411
Diffstat (limited to 'tests/unit/dialog/dialog_common.js')
-rw-r--r-- | tests/unit/dialog/dialog_common.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/dialog/dialog_common.js b/tests/unit/dialog/dialog_common.js index 87f7f7d15..fc5105d74 100644 --- a/tests/unit/dialog/dialog_common.js +++ b/tests/unit/dialog/dialog_common.js @@ -3,11 +3,13 @@ TestHelpers.commonWidgetTests( "dialog", { appendTo: "body", autoOpen: true, buttons: [], - classes: {}, + classes: { + "ui-dialog": "ui-corner-all", + "ui-dialog-titlebar": "ui-corner-all" + }, closeOnEscape: true, closeText: "Close", disabled: false, - dialogClass: "", draggable: true, height: "auto", hide: null, |