Skip to content

Commit c1c4df5

Browse files
committed
Selectable: Move selectable into widgets folder
1 parent cac7dc9 commit c1c4df5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/unit/selectable/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/selectable"
3+
"ui/widgets/selectable"
44
], function( common ) {
55

66
common.testWidget( "selectable", {

tests/unit/selectable/events.js

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

77
module("selectable: events");

tests/unit/selectable/methods.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/selectable"
3+
"ui/widgets/selectable"
44
], function( $ ) {
55

66
module("selectable: methods");

tests/unit/selectable/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/selectable"
3+
"ui/widgets/selectable"
44
], function( $ ) {
55

66
module("selectable: options");

ui/selectable.js renamed to ui/widgets/selectable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
define([
2222
"jquery",
2323
"./mouse",
24-
"./widget"
24+
"../widget"
2525
], factory );
2626
} else {
2727

0 commit comments

Comments
 (0)