mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
dialog: added some missing defaults
This commit is contained in:
parent
ff3998265d
commit
176b2d21cd
@ -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,
|
||||
|
@ -484,12 +484,16 @@ $.extend($.ui.dialog, {
|
||||
closeText: 'close',
|
||||
dialogClass: '',
|
||||
draggable: true,
|
||||
hide: null,
|
||||
height: 'auto',
|
||||
maxHeight: false,
|
||||
maxWidth: false,
|
||||
minHeight: 150,
|
||||
minWidth: 150,
|
||||
modal: false,
|
||||
position: 'center',
|
||||
resizable: true,
|
||||
show: null,
|
||||
stack: true,
|
||||
title: '',
|
||||
width: 300,
|
||||
|
Loading…
Reference in New Issue
Block a user