diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-01-30 04:53:30 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-01-30 04:53:30 +0000 |
commit | 256ea0670aa32054661a2d2f44d1748ea8f9eb97 (patch) | |
tree | 8a45fdc2425226b102113141601a234f4adb6bca | |
parent | 3ad604216e7c27ef3a146f2aafeb911477944770 (diff) | |
download | jquery-ui-256ea0670aa32054661a2d2f44d1748ea8f9eb97.tar.gz jquery-ui-256ea0670aa32054661a2d2f44d1748ea8f9eb97.zip |
Resizable: Fixed defaults in tests.
-rw-r--r-- | tests/unit/resizable/resizable.js | 5 | ||||
-rw-r--r-- | ui/ui.resizable.js | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/resizable/resizable.js b/tests/unit/resizable/resizable.js index dd0d11c05..260e923b1 100644 --- a/tests/unit/resizable/resizable.js +++ b/tests/unit/resizable/resizable.js @@ -21,9 +21,8 @@ var defaults = { distance: 1, ghost: false, grid: false, - handles: '???', - helper: null, - knobHandles: false, + handles: 'e,s,se', + helper: false, maxHeight: null, maxWidth: null, minHeight: 10, diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index 8908244cf..9ccfad4fd 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -516,6 +516,7 @@ $.extend($.ui.resizable, { distance: 1, ghost: false, grid: false, + handles: "e,s,se", helper: false, maxHeight: null, maxWidth: null, |