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",
|
||||
"selectable",
|
||||
"selectmenu",
|
||||
"slider"
|
||||
"slider",
|
||||
"sortable"
|
||||
];
|
||||
|
||||
function getPath( module ) {
|
||||
|
@ -3,7 +3,7 @@ define( [
|
||||
"./helper",
|
||||
"ui/widgets/draggable",
|
||||
"ui/widgets/droppable",
|
||||
"ui/sortable"
|
||||
"ui/widgets/sortable"
|
||||
], function( $, testHelper ) {
|
||||
|
||||
// TODO: This doesn't actually test whether append happened, possibly remove
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"lib/common",
|
||||
"ui/sortable"
|
||||
"ui/widgets/sortable"
|
||||
], function( common ) {
|
||||
|
||||
common.testWidget( "sortable", {
|
||||
|
@ -1,7 +1,7 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"./helper",
|
||||
"ui/sortable"
|
||||
"ui/widgets/sortable"
|
||||
], function( $, testHelper ) {
|
||||
|
||||
module( "sortable: core" );
|
||||
|
@ -1,7 +1,7 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"./helper",
|
||||
"ui/sortable",
|
||||
"ui/widgets/sortable",
|
||||
"ui/widgets/draggable"
|
||||
], function( $, testHelper ) {
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"./helper",
|
||||
"ui/sortable"
|
||||
"ui/widgets/sortable"
|
||||
], function( $, testHelper ) {
|
||||
|
||||
module("sortable: methods");
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"ui/sortable"
|
||||
"ui/widgets/sortable"
|
||||
], function( $ ) {
|
||||
|
||||
module("sortable: options");
|
||||
|
@ -20,13 +20,12 @@
|
||||
// AMD. Register as an anonymous module.
|
||||
define([
|
||||
"jquery",
|
||||
"./core",
|
||||
"./data",
|
||||
"./version",
|
||||
"./ie",
|
||||
"./widgets/mouse",
|
||||
"./scroll-parent",
|
||||
"./widget"
|
||||
"./mouse",
|
||||
"../data",
|
||||
"../ie",
|
||||
"../scroll-parent",
|
||||
"../version",
|
||||
"../widget"
|
||||
], factory );
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user