diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-14 22:05:54 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-08 00:29:38 -0400 |
commit | 2a279db00a2d808884e887c90c9bd9bd40afb31f (patch) | |
tree | 3d27d54b9e09e4fad20042d152f4604778d2a2b5 /tests | |
parent | e59b596141d60b5aff4dbf1c384c62abfcf9c505 (diff) | |
download | jquery-ui-2a279db00a2d808884e887c90c9bd9bd40afb31f.tar.gz jquery-ui-2a279db00a2d808884e887c90c9bd9bd40afb31f.zip |
Selectable: Move selectable into widgets folder
Ref #13885
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/selectable/common.js | 2 | ||||
-rw-r--r-- | tests/unit/selectable/events.js | 2 | ||||
-rw-r--r-- | tests/unit/selectable/methods.js | 2 | ||||
-rw-r--r-- | tests/unit/selectable/options.js | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/selectable/common.js b/tests/unit/selectable/common.js index 9a14e6df5..317fde562 100644 --- a/tests/unit/selectable/common.js +++ b/tests/unit/selectable/common.js @@ -1,6 +1,6 @@ define( [ "lib/common", - "ui/selectable" + "ui/widgets/selectable" ], function( common ) { common.testWidget( "selectable", { diff --git a/tests/unit/selectable/events.js b/tests/unit/selectable/events.js index 6eb99f325..5d4e48996 100644 --- a/tests/unit/selectable/events.js +++ b/tests/unit/selectable/events.js @@ -1,7 +1,7 @@ define( [ "jquery", "lib/helper", - "ui/selectable" + "ui/widgets/selectable" ], function( $, testHelpers ) { module("selectable: events"); diff --git a/tests/unit/selectable/methods.js b/tests/unit/selectable/methods.js index 045809670..ee60e4ebf 100644 --- a/tests/unit/selectable/methods.js +++ b/tests/unit/selectable/methods.js @@ -1,6 +1,6 @@ define( [ "jquery", - "ui/selectable" + "ui/widgets/selectable" ], function( $ ) { module("selectable: methods"); diff --git a/tests/unit/selectable/options.js b/tests/unit/selectable/options.js index cdbfb4aab..6bb898d26 100644 --- a/tests/unit/selectable/options.js +++ b/tests/unit/selectable/options.js @@ -1,6 +1,6 @@ define( [ "jquery", - "ui/selectable" + "ui/widgets/selectable" ], function( $ ) { module("selectable: options"); |