Skip to content

Commit 6b005be

Browse files
committed
Droppable: Move droppable into widgets folder
1 parent 1e058b8 commit 6b005be

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

tests/unit/droppable/common-deprecated.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define( [
22
"lib/common",
3-
"ui/droppable"
3+
"ui/widgets/droppable"
44
], function( common ) {
55

66
common.testWidget( "droppable", {

tests/unit/droppable/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define( [
22
"lib/common",
3-
"ui/droppable"
3+
"ui/widgets/droppable"
44
], function( common ) {
55

66
common.testWidget( "droppable", {

tests/unit/droppable/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define( [
22
"jquery",
33
"./helper",
4-
"ui/droppable"
4+
"ui/widgets/droppable"
55
], function( $, testHelper ) {
66

77
module("droppable: core");

tests/unit/droppable/events.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define( [
22
"jquery",
3-
"ui/droppable"
3+
"ui/widgets/droppable"
44
], function( $ ) {
55

66
module( "droppable: events" );

tests/unit/droppable/methods.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define( [
22
"jquery",
33
"./helper",
4-
"ui/droppable"
4+
"ui/widgets/droppable"
55
], function( $, testHelper ) {
66

77
module("droppable: methods");

tests/unit/droppable/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define( [
22
"jquery",
3-
"ui/droppable"
3+
"ui/widgets/droppable"
44
], function( $ ) {
55

66
module( "droppable: options" );

ui/droppable.js renamed to ui/widgets/droppable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// AMD. Register as an anonymous module.
2020
define([
2121
"jquery",
22-
"./widget",
22+
"../widget",
2323
"./mouse",
2424
"./draggable"
2525
], factory );

0 commit comments

Comments
 (0)