mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
parent
4c6b1463ea
commit
dd6a99f140
3
demos/bootstrap.js
vendored
3
demos/bootstrap.js
vendored
@ -26,7 +26,8 @@ var effectsAll = [
|
|||||||
];
|
];
|
||||||
var widgets = [
|
var widgets = [
|
||||||
"accordion",
|
"accordion",
|
||||||
"autocomplete"
|
"autocomplete",
|
||||||
|
"button"
|
||||||
];
|
];
|
||||||
|
|
||||||
function getPath( module ) {
|
function getPath( module ) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
define( [
|
define( [
|
||||||
"lib/common",
|
"lib/common",
|
||||||
"ui/button"
|
"ui/widgets/button"
|
||||||
], function( common ) {
|
], function( common ) {
|
||||||
|
|
||||||
common.testWidget( "button", {
|
common.testWidget( "button", {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
define( [
|
define( [
|
||||||
"jquery",
|
"jquery",
|
||||||
"ui/button"
|
"ui/widgets/button"
|
||||||
], function( $ ) {
|
], function( $ ) {
|
||||||
|
|
||||||
module("button: core");
|
module("button: core");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
define( [
|
define( [
|
||||||
"jquery",
|
"jquery",
|
||||||
"ui/button"
|
"ui/widgets/button"
|
||||||
], function( $ ) {
|
], function( $ ) {
|
||||||
|
|
||||||
module("button: events");
|
module("button: events");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
define( [
|
define( [
|
||||||
"jquery",
|
"jquery",
|
||||||
"ui/button"
|
"ui/widgets/button"
|
||||||
], function( $ ) {
|
], function( $ ) {
|
||||||
|
|
||||||
module("button: methods");
|
module("button: methods");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
define( [
|
define( [
|
||||||
"jquery",
|
"jquery",
|
||||||
"ui/button"
|
"ui/widgets/button"
|
||||||
], function( $ ) {
|
], function( $ ) {
|
||||||
|
|
||||||
module( "button: options" );
|
module( "button: options" );
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"./version",
|
"./version",
|
||||||
"./keycode",
|
"./keycode",
|
||||||
"./widget",
|
"./widget",
|
||||||
"./button",
|
"./widgets/button",
|
||||||
"./draggable",
|
"./draggable",
|
||||||
"./focusable",
|
"./focusable",
|
||||||
"./mouse",
|
"./mouse",
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"./keycode",
|
"./keycode",
|
||||||
"./safe-active-element",
|
"./safe-active-element",
|
||||||
"./widget",
|
"./widget",
|
||||||
"./button"
|
"./widgets/button"
|
||||||
], factory );
|
], factory );
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -22,11 +22,11 @@
|
|||||||
// AMD. Register as an anonymous module.
|
// AMD. Register as an anonymous module.
|
||||||
define([
|
define([
|
||||||
"jquery",
|
"jquery",
|
||||||
"./data",
|
"../data",
|
||||||
"./keycode",
|
"../keycode",
|
||||||
"./labels",
|
"../labels",
|
||||||
"./version",
|
"../version",
|
||||||
"./widget"
|
"../widget"
|
||||||
], factory );
|
], factory );
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user