mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
a5d5c4f60a
- Fixed destroy method. - Removed preventDefault option (Fixed #4135 - preventDefault should not be an option as there's not use case for false).
29 lines
492 B
JavaScript
29 lines
492 B
JavaScript
/*
|
|
* resizable_defaults.js
|
|
*/
|
|
|
|
var resizable_defaults = {
|
|
alsoResize: false,
|
|
animate: false,
|
|
animateDuration: 'slow',
|
|
animateEasing: 'swing',
|
|
aspectRatio: false,
|
|
autoHide: false,
|
|
cancel: ':input,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: 1000
|
|
};
|
|
|
|
commonWidgetTests('resizable', { defaults: resizable_defaults });
|