diff options
author | Richard Worth <rdworth@gmail.com> | 2009-02-09 11:15:23 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-02-09 11:15:23 +0000 |
commit | 176b2d21cd959d88fc30676cd2c5f081f6b64c15 (patch) | |
tree | 066b8204ed8185a56c0d8ca7081bdb5953b6f420 /tests | |
parent | ff3998265dec49e086e80d7cb5819686810443e7 (diff) | |
download | jquery-ui-176b2d21cd959d88fc30676cd2c5f081f6b64c15.tar.gz jquery-ui-176b2d21cd959d88fc30676cd2c5f081f6b64c15.zip |
dialog: added some missing defaults
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/dialog/dialog_defaults.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/dialog/dialog_defaults.js b/tests/unit/dialog/dialog_defaults.js index eb9d36bf7..9607bf194 100644 --- a/tests/unit/dialog/dialog_defaults.js +++ b/tests/unit/dialog/dialog_defaults.js @@ -12,13 +12,15 @@ var dialog_defaults = { dialogClass: '', draggable: true, height: 'auto', - maxHeight: undefined, - maxWidth: undefined, + hide: null, + maxHeight: false, + maxWidth: false, minHeight: 150, minWidth: 150, modal: false, position: 'center', resizable: true, + show: null, stack: true, title: '', width: 300, |