diff options
author | Richard Worth <rdworth@gmail.com> | 2009-02-04 04:35:18 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-02-04 04:35:18 +0000 |
commit | 52005f42dda87e4dc06d5688c27bf6b82ad80621 (patch) | |
tree | b41f7bce68c7384a1157e0902cd3004e02c529b3 /tests/unit/dialog/dialog_defaults.js | |
parent | b18da5cd646fbe86ae9396c5faf2c519ac989f09 (diff) | |
download | jquery-ui-52005f42dda87e4dc06d5688c27bf6b82ad80621.tar.gz jquery-ui-52005f42dda87e4dc06d5688c27bf6b82ad80621.zip |
dialog unit tests: split tests into individual files
Diffstat (limited to 'tests/unit/dialog/dialog_defaults.js')
-rw-r--r-- | tests/unit/dialog/dialog_defaults.js | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/tests/unit/dialog/dialog_defaults.js b/tests/unit/dialog/dialog_defaults.js index 998a11b70..475f36ed2 100644 --- a/tests/unit/dialog/dialog_defaults.js +++ b/tests/unit/dialog/dialog_defaults.js @@ -3,7 +3,27 @@ */ var dialog_defaults = { - disabled: false + autoOpen: true, + bgiframe: false, + buttons: {}, + closeOnEscape: true, + closeText: 'close', + disabled: false, + dialogClass: '', + draggable: true, + height: 'auto', + maxHeight: undefined, + maxWidth: undefined, + minHeight: 150, + minWidth: 150, + modal: false, + position: 'center', + resizable: true, + shadow: false, + stack: true, + title: '', + width: 300, + zIndex: 1000 }; commonWidgetTests('dialog', { defaults: dialog_defaults }); |