mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
34 lines
614 B
JavaScript
34 lines
614 B
JavaScript
/*
|
|
* resizable_defaults.js
|
|
*/
|
|
|
|
var resizable_defaults = {
|
|
animate: false,
|
|
animateDuration: 'slow',
|
|
animateEasing: 'swing',
|
|
alsoResize: false,
|
|
aspectRatio: false,
|
|
autoHide: false,
|
|
cancel: ':input,option',
|
|
containment: false,
|
|
delay: 0,
|
|
disabled: false,
|
|
disableSelection: true,
|
|
distance: 1,
|
|
ghost: false,
|
|
grid: false,
|
|
handles: 'e,s,se',
|
|
helper: false,
|
|
maxHeight: null,
|
|
maxWidth: null,
|
|
minHeight: 10,
|
|
minWidth: 10,
|
|
preserveCursor: true,
|
|
preventDefault: true,
|
|
proportionallyResize: false,
|
|
transparent: false,
|
|
zIndex: 1001
|
|
};
|
|
|
|
commonWidgetTests('resizable', { defaults: resizable_defaults });
|