diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-01 10:20:38 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-01 10:20:38 +0000 |
commit | 19c534188a9e5784571248ac0054daba8ea71ed2 (patch) | |
tree | 513c67ebc55fab6c8d311ddaa9428683eeefcd35 /tests | |
parent | d5402ae4025207b824933c27c626225f43db8f7c (diff) | |
download | jquery-ui-19c534188a9e5784571248ac0054daba8ea71ed2.tar.gz jquery-ui-19c534188a9e5784571248ac0054daba8ea71ed2.zip |
tests resizable: Updated defaults test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/resizable.js | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/tests/resizable.js b/tests/resizable.js index c091c14d9..0c924c214 100644 --- a/tests/resizable.js +++ b/tests/resizable.js @@ -21,19 +21,31 @@ var drag = function(el, dx, dy, complete) { }; var defaults = { - alsoResize: undefined, + animate: false, + animateDuration: 'slow', + animateEasing: 'swing', + alsoResize: false, aspectRatio: false, autoHide: false, - containment: undefined, - grid: undefined, - handles: 'e,s,se', - helper: null, + cancel: ':input', + containment: false, + delay: 0, disabled: false, - maxHeight: undefined, - maxWidth: undefined, + disableSelection: true, + distance: 1, + ghost: false, + grid: false, + handles: '???', + helper: null, + knobHandles: false, + maxHeight: null, + maxWidth: null, minHeight: 10, minWidth: 10, - proportionallyResize: undefined + preserveCursor: true, + preventDefault: true, + proportionallyResize: false, + transparent: false }; // Resizable Tests |