mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
31 lines
545 B
JavaScript
31 lines
545 B
JavaScript
TestHelpers.commonWidgetTests( "resizable", {
|
|
defaults: {
|
|
alsoResize: false,
|
|
animate: false,
|
|
animateDuration: "slow",
|
|
animateEasing: "swing",
|
|
aspectRatio: false,
|
|
autoHide: false,
|
|
cancel: "input,textarea,button,select,option",
|
|
containment: false,
|
|
delay: 0,
|
|
disabled: false,
|
|
distance: 1,
|
|
ghost: false,
|
|
grid: false,
|
|
handles: "e,s,se",
|
|
helper: false,
|
|
maxHeight: null,
|
|
maxWidth: null,
|
|
minHeight: 10,
|
|
minWidth: 10,
|
|
zIndex: 90,
|
|
|
|
// callbacks
|
|
create: null,
|
|
resize: null,
|
|
start: null,
|
|
stop: null
|
|
}
|
|
});
|