aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/bootstrap.js3
-rw-r--r--tests/unit/selectable/common.js2
-rw-r--r--tests/unit/selectable/events.js2
-rw-r--r--tests/unit/selectable/methods.js2
-rw-r--r--tests/unit/selectable/options.js2
-rw-r--r--ui/widgets/selectable.js (renamed from ui/selectable.js)6
6 files changed, 9 insertions, 8 deletions
diff --git a/demos/bootstrap.js b/demos/bootstrap.js
index 4f5dc8127..b726148c9 100644
--- a/demos/bootstrap.js
+++ b/demos/bootstrap.js
@@ -35,7 +35,8 @@ var widgets = [
"menu",
"mouse",
"progressbar",
- "resizable"
+ "resizable",
+ "selectable"
];
function getPath( module ) {
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");
diff --git a/ui/selectable.js b/ui/widgets/selectable.js
index 160fcf56d..4edf46ad6 100644
--- a/ui/selectable.js
+++ b/ui/widgets/selectable.js
@@ -20,9 +20,9 @@
// AMD. Register as an anonymous module.
define([
"jquery",
- "./version",
- "./widgets/mouse",
- "./widget"
+ "./mouse",
+ "../version",
+ "../widget"
], factory );
} else {