Sortable: Move sortable into widgets folder

Ref #13885
This commit is contained in:
Alexander Schmitz 2015-07-14 22:08:51 -04:00
parent 149a1a2a82
commit 657b6d0f58
8 changed files with 14 additions and 14 deletions

3
demos/bootstrap.js vendored
View File

@ -38,7 +38,8 @@ var widgets = [
"resizable", "resizable",
"selectable", "selectable",
"selectmenu", "selectmenu",
"slider" "slider",
"sortable"
]; ];
function getPath( module ) { function getPath( module ) {

View File

@ -3,7 +3,7 @@ define( [
"./helper", "./helper",
"ui/widgets/draggable", "ui/widgets/draggable",
"ui/widgets/droppable", "ui/widgets/droppable",
"ui/sortable" "ui/widgets/sortable"
], function( $, testHelper ) { ], function( $, testHelper ) {
// TODO: This doesn't actually test whether append happened, possibly remove // TODO: This doesn't actually test whether append happened, possibly remove

View File

@ -1,6 +1,6 @@
define( [ define( [
"lib/common", "lib/common",
"ui/sortable" "ui/widgets/sortable"
], function( common ) { ], function( common ) {
common.testWidget( "sortable", { common.testWidget( "sortable", {

View File

@ -1,7 +1,7 @@
define( [ define( [
"jquery", "jquery",
"./helper", "./helper",
"ui/sortable" "ui/widgets/sortable"
], function( $, testHelper ) { ], function( $, testHelper ) {
module( "sortable: core" ); module( "sortable: core" );

View File

@ -1,7 +1,7 @@
define( [ define( [
"jquery", "jquery",
"./helper", "./helper",
"ui/sortable", "ui/widgets/sortable",
"ui/widgets/draggable" "ui/widgets/draggable"
], function( $, testHelper ) { ], function( $, testHelper ) {

View File

@ -1,7 +1,7 @@
define( [ define( [
"jquery", "jquery",
"./helper", "./helper",
"ui/sortable" "ui/widgets/sortable"
], function( $, testHelper ) { ], function( $, testHelper ) {
module("sortable: methods"); module("sortable: methods");

View File

@ -1,6 +1,6 @@
define( [ define( [
"jquery", "jquery",
"ui/sortable" "ui/widgets/sortable"
], function( $ ) { ], function( $ ) {
module("sortable: options"); module("sortable: options");

View File

@ -20,13 +20,12 @@
// AMD. Register as an anonymous module. // AMD. Register as an anonymous module.
define([ define([
"jquery", "jquery",
"./core", "./mouse",
"./data", "../data",
"./version", "../ie",
"./ie", "../scroll-parent",
"./widgets/mouse", "../version",
"./scroll-parent", "../widget"
"./widget"
], factory ); ], factory );
} else { } else {