Navigation Menu

Skip to content

Commit

Permalink
Selectable: Move selectable into widgets folder
Browse files Browse the repository at this point in the history
Ref #13885
  • Loading branch information
arschmitz committed Aug 8, 2015
1 parent e59b596 commit 2a279db
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion demos/bootstrap.js
Expand Up @@ -35,7 +35,8 @@ var widgets = [
"menu",
"mouse",
"progressbar",
"resizable"
"resizable",
"selectable"
];

function getPath( module ) {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/selectable/common.js
@@ -1,6 +1,6 @@
define( [
"lib/common",
"ui/selectable"
"ui/widgets/selectable"
], function( common ) {

common.testWidget( "selectable", {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/selectable/events.js
@@ -1,7 +1,7 @@
define( [
"jquery",
"lib/helper",
"ui/selectable"
"ui/widgets/selectable"
], function( $, testHelpers ) {

module("selectable: events");
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/selectable/methods.js
@@ -1,6 +1,6 @@
define( [
"jquery",
"ui/selectable"
"ui/widgets/selectable"
], function( $ ) {

module("selectable: methods");
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/selectable/options.js
@@ -1,6 +1,6 @@
define( [
"jquery",
"ui/selectable"
"ui/widgets/selectable"
], function( $ ) {

module("selectable: options");
Expand Down
6 changes: 3 additions & 3 deletions ui/selectable.js → ui/widgets/selectable.js
Expand Up @@ -20,9 +20,9 @@
// AMD. Register as an anonymous module.
define([
"jquery",
"./version",
"./widgets/mouse",
"./widget"
"./mouse",
"../version",
"../widget"
], factory );
} else {

Expand Down

0 comments on commit 2a279db

Please sign in to comment.