diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-07 10:55:52 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:27:00 -0400 |
commit | bde431bb449b1d957d4e0b736111ff342f2a919d (patch) | |
tree | 27fd40037c30dbff8ef3b6113e90817ab96b53bf /tests/unit/resizable/resizable_common.js | |
parent | dc4b015a8b9acdb5bff2d5dd89737b3d8b64097f (diff) | |
download | jquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.tar.gz jquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.zip |
Tests: Rename files
Ref gh-1528
Diffstat (limited to 'tests/unit/resizable/resizable_common.js')
-rw-r--r-- | tests/unit/resizable/resizable_common.js | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/unit/resizable/resizable_common.js b/tests/unit/resizable/resizable_common.js deleted file mode 100644 index 822a4db87..000000000 --- a/tests/unit/resizable/resizable_common.js +++ /dev/null @@ -1,40 +0,0 @@ -define( [ - "lib/common", - "ui/resizable" -], function( common ) { - -common.testWidget( "resizable", { - defaults: { - alsoResize: false, - animate: false, - animateDuration: "slow", - animateEasing: "swing", - aspectRatio: false, - autoHide: false, - cancel: "input, textarea, button, select, option", - classes: { - "ui-resizable-se": "ui-icon ui-icon-gripsmall-diagonal-se" - }, - 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 - } -}); - -} ); |