mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
parent
149a1a2a82
commit
657b6d0f58
3
demos/bootstrap.js
vendored
3
demos/bootstrap.js
vendored
@ -38,7 +38,8 @@ var widgets = [
|
|||||||
"resizable",
|
"resizable",
|
||||||
"selectable",
|
"selectable",
|
||||||
"selectmenu",
|
"selectmenu",
|
||||||
"slider"
|
"slider",
|
||||||
|
"sortable"
|
||||||
];
|
];
|
||||||
|
|
||||||
function getPath( module ) {
|
function getPath( module ) {
|
||||||
|
@ -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
|
||||||
|
@ -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", {
|
||||||
|
@ -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" );
|
||||||
|
@ -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 ) {
|
||||||
|
|
||||||
|
@ -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");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
define( [
|
define( [
|
||||||
"jquery",
|
"jquery",
|
||||||
"ui/sortable"
|
"ui/widgets/sortable"
|
||||||
], function( $ ) {
|
], function( $ ) {
|
||||||
|
|
||||||
module("sortable: options");
|
module("sortable: options");
|
||||||
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user