mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
30 lines
482 B
JavaScript
30 lines
482 B
JavaScript
/*
|
|
* dialog_defaults.js
|
|
*/
|
|
|
|
var dialog_defaults = {
|
|
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 });
|