mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
parent
f1ce6e5de5
commit
5efa98361e
3
demos/bootstrap.js
vendored
3
demos/bootstrap.js
vendored
@ -28,7 +28,8 @@ var widgets = [
|
||||
"accordion",
|
||||
"autocomplete",
|
||||
"button",
|
||||
"datepicker"
|
||||
"datepicker",
|
||||
"dialog"
|
||||
];
|
||||
|
||||
function getPath( module ) {
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"lib/common",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( common ) {
|
||||
|
||||
common.testWidget( "dialog", {
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"lib/common",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( common ) {
|
||||
|
||||
common.testWidget( "dialog", {
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( $ ) {
|
||||
|
||||
// TODO add teardown callback to remove dialogs
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( $ ) {
|
||||
|
||||
module( "dialog (deprecated): options" );
|
||||
|
@ -1,7 +1,7 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"./helper",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( $, testHelper ) {
|
||||
|
||||
module("dialog: events");
|
||||
|
@ -1,7 +1,7 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"lib/helper",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( $, helper ) {
|
||||
|
||||
return $.extend( helper, {
|
||||
|
@ -1,6 +1,6 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"ui/dialog"
|
||||
"ui/widgets/dialog"
|
||||
], function( $ ) {
|
||||
|
||||
module("dialog: methods", {
|
||||
|
@ -1,7 +1,7 @@
|
||||
define( [
|
||||
"jquery",
|
||||
"./helper",
|
||||
"ui/dialog",
|
||||
"ui/widgets/dialog",
|
||||
"ui/effect-blind",
|
||||
"ui/effect-explode"
|
||||
], function( $, testHelper ) {
|
||||
|
@ -22,20 +22,19 @@
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"./core",
|
||||
"./version",
|
||||
"./keycode",
|
||||
"./widget",
|
||||
"./widgets/button",
|
||||
"./draggable",
|
||||
"./focusable",
|
||||
"./mouse",
|
||||
"./position",
|
||||
"./resizable",
|
||||
"./safe-active-element",
|
||||
"./safe-blur",
|
||||
"./tabbable",
|
||||
"./unique-id"
|
||||
"./button",
|
||||
"../mouse",
|
||||
"../resizable",
|
||||
"../draggable",
|
||||
"../focusable",
|
||||
"../keycode",
|
||||
"../position",
|
||||
"../safe-active-element",
|
||||
"../safe-blur",
|
||||
"../tabbable",
|
||||
"../unique-id",
|
||||
"../version",
|
||||
"../widget"
|
||||
], factory );
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user