mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
All: Support CommonJS and Node.
Signed-off-by: Jonathan Horowitz <jhorowitz@firedrum.com>
This commit is contained in:
parent
278d1e1108
commit
b28c375bee
@ -18,6 +18,12 @@
|
||||
|
||||
"globals": {
|
||||
"define": false,
|
||||
"Globalize": false
|
||||
"Globalize": false,
|
||||
"require": false,
|
||||
"exports": false,
|
||||
"module": false,
|
||||
"global": false,
|
||||
"self": false,
|
||||
"window": false
|
||||
}
|
||||
}
|
||||
|
62
ui/core.js
62
ui/core.js
@ -1,21 +1,47 @@
|
||||
// This file is deprecated in 1.12.0 to be removed in 1.13
|
||||
( function() {
|
||||
define( [
|
||||
"jquery",
|
||||
"./data",
|
||||
"./disable-selection",
|
||||
"./focusable",
|
||||
"./form",
|
||||
"./ie",
|
||||
"./keycode",
|
||||
"./labels",
|
||||
"./jquery-1-7",
|
||||
"./plugin",
|
||||
"./safe-active-element",
|
||||
"./safe-blur",
|
||||
"./scroll-parent",
|
||||
"./tabbable",
|
||||
"./unique-id",
|
||||
"./version"
|
||||
] );
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
require( "jquery" );
|
||||
require( "./data" );
|
||||
require( "./disable-selection" );
|
||||
require( "./focusable" );
|
||||
require( "./form" );
|
||||
require( "./ie" );
|
||||
require( "./keycode" );
|
||||
require( "./labels" );
|
||||
require( "./jquery-1-7" );
|
||||
require( "./plugin" );
|
||||
require( "./safe-active-element" );
|
||||
require( "./safe-blur" );
|
||||
require( "./scroll-parent" );
|
||||
require( "./tabbable" );
|
||||
require( "./unique-id" );
|
||||
require( "./version" );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD
|
||||
define( [
|
||||
"jquery",
|
||||
"./data",
|
||||
"./disable-selection",
|
||||
"./focusable",
|
||||
"./form",
|
||||
"./ie",
|
||||
"./keycode",
|
||||
"./labels",
|
||||
"./jquery-1-7",
|
||||
"./plugin",
|
||||
"./safe-active-element",
|
||||
"./safe-blur",
|
||||
"./scroll-parent",
|
||||
"./tabbable",
|
||||
"./unique-id",
|
||||
"./version"
|
||||
] );
|
||||
}
|
||||
} )();
|
||||
|
24
ui/data.js
24
ui/data.js
@ -12,17 +12,24 @@
|
||||
//>>description: Selects elements which have data stored under the specified key.
|
||||
//>>docs: http://api.jqueryui.com/data-selector/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
} ( function( $ ) {
|
||||
}( function( $ ) {
|
||||
return $.extend( $.expr[ ":" ], {
|
||||
data: $.expr.createPseudo ?
|
||||
$.expr.createPseudo( function( dataName ) {
|
||||
@ -36,4 +43,9 @@ return $.extend( $.expr[ ":" ], {
|
||||
return !!$.data( elem, match[ 3 ] );
|
||||
}
|
||||
} );
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,17 +13,24 @@
|
||||
//>>docs: http://api.jqueryui.com/disableSelection/
|
||||
|
||||
// This file is deprecated
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
} ( function( $ ) {
|
||||
}( function( $ ) {
|
||||
|
||||
return $.fn.extend( {
|
||||
disableSelection: ( function() {
|
||||
@ -43,4 +50,9 @@ return $.fn.extend( {
|
||||
}
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
22
ui/effect.js
22
ui/effect.js
@ -15,15 +15,22 @@
|
||||
//>>docs: http://api.jqueryui.com/category/effects-core/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -1632,4 +1639,9 @@ $.each( baseEasings, function( name, easeIn ) {
|
||||
|
||||
return $.effects;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/blind-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -67,4 +70,9 @@ return $.effects.define( "blind", "hide", function( options, done ) {
|
||||
} );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/bounce-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -107,4 +110,9 @@ return $.effects.define( "bounce", function( options, done ) {
|
||||
$.effects.unshift( element, queuelen, anims + 1 );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/clip-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -62,4 +65,9 @@ return $.effects.define( "clip", "hide", function( options, done ) {
|
||||
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/drop-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -66,4 +69,9 @@ return $.effects.define( "drop", "hide", function( options, done ) {
|
||||
} );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -15,19 +15,22 @@
|
||||
//>>docs: http://api.jqueryui.com/explode-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -108,4 +111,9 @@ return $.effects.define( "explode", "hide", function( options, done ) {
|
||||
}
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/fade-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -44,4 +47,9 @@ return $.effects.define( "fade", "toggle", function( options, done ) {
|
||||
} );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/fold-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -86,4 +89,9 @@ return $.effects.define( "fold", "hide", function( options, done ) {
|
||||
$.effects.unshift( element, queuelen, 4 );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/highlight-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -54,4 +57,9 @@ return $.effects.define( "highlight", "show", function( options, done ) {
|
||||
} );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,20 +13,27 @@
|
||||
//>>docs: http://api.jqueryui.com/puff-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory(
|
||||
require( "jquery" ),
|
||||
require( "../version" ),
|
||||
require( "../effect" ),
|
||||
require( "./effect-scale" )
|
||||
);
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect",
|
||||
"./effect-scale"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect", "./effect-scale" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -39,4 +46,9 @@ return $.effects.define( "puff", "hide", function( options, done ) {
|
||||
$.effects.effect.scale.call( this, newOptions, done );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/pulsate-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -61,4 +64,9 @@ return $.effects.define( "pulsate", "show", function( options, done ) {
|
||||
$.effects.unshift( element, queuelen, anims + 1 );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,20 +13,27 @@
|
||||
//>>docs: http://api.jqueryui.com/scale-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory(
|
||||
require( "jquery" ),
|
||||
require( "../version" ),
|
||||
require( "../effect" ),
|
||||
require( "./effect-size" )
|
||||
);
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect",
|
||||
"./effect-size"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect", "./effect-size" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -53,4 +60,9 @@ return $.effects.define( "scale", function( options, done ) {
|
||||
$.effects.effect.size.call( this, newOptions, done );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/shake-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -71,4 +74,9 @@ return $.effects.define( "shake", function( options, done ) {
|
||||
$.effects.unshift( element, queuelen, anims + 1 );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/size-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -188,4 +191,9 @@ return $.effects.define( "size", function( options, done ) {
|
||||
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/slide-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -73,4 +76,9 @@ return $.effects.define( "slide", "show", function( options, done ) {
|
||||
} );
|
||||
} );
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -13,19 +13,22 @@
|
||||
//>>docs: http://api.jqueryui.com/transfer-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "../version" ), require( "../effect" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
define( [ "jquery", "../version", "../effect" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -37,4 +40,9 @@ if ( $.uiBackCompat !== false ) {
|
||||
}
|
||||
return effect;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
} ( function( $ ) {
|
||||
}( function( $ ) {
|
||||
|
||||
// Internal use only
|
||||
return $.ui.escapeSelector = ( function() {
|
||||
@ -18,4 +25,9 @@ return $.ui.escapeSelector = ( function() {
|
||||
};
|
||||
} )();
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -12,17 +12,24 @@
|
||||
//>>description: Selects elements which can be focused.
|
||||
//>>docs: http://api.jqueryui.com/focusable-selector/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
} ( function( $ ) {
|
||||
}( function( $ ) {
|
||||
|
||||
// Selectors
|
||||
$.ui.focusable = function( element, hasTabindex ) {
|
||||
@ -81,4 +88,9 @@ $.extend( $.expr[ ":" ], {
|
||||
|
||||
return $.ui.focusable;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -12,19 +12,22 @@
|
||||
//>>description: Refresh input widgets when their form is reset
|
||||
//>>docs: http://api.jqueryui.com/form-reset-mixin/
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./form" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"./form",
|
||||
"./version"
|
||||
], factory );
|
||||
define( [ "jquery", "./form", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -74,4 +77,9 @@ return $.ui.formResetMixin = {
|
||||
}
|
||||
};
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
24
ui/form.js
24
ui/form.js
@ -1,14 +1,21 @@
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
} ( function( $ ) {
|
||||
}( function( $ ) {
|
||||
|
||||
// Support: IE8 Only
|
||||
// IE8 does not support the form attribute and when it is supplied. It overwrites the form prop
|
||||
@ -17,4 +24,9 @@ return $.fn._form = function() {
|
||||
return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
|
||||
};
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Afrikaans initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Renier Pretorius. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.af );
|
||||
|
||||
return datepicker.regional.af;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -3,15 +3,22 @@
|
||||
/* Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */
|
||||
/* Mohamed Amine HADDAD -- zatamine@gmail.com */
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -36,4 +43,9 @@ datepicker.setDefaults( datepicker.regional[ "ar-DZ" ] );
|
||||
|
||||
return datepicker.regional[ "ar-DZ" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -3,15 +3,22 @@
|
||||
/* Kuwait, Oman, Qatar, Saudi Arabia and the United Arab Emirates, Egypt, Sudan and Yemen. */
|
||||
/* Written by Mohammed Alshehri -- m@dralshehri.com */
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -36,4 +43,9 @@ datepicker.setDefaults( datepicker.regional.ar );
|
||||
|
||||
return datepicker.regional.ar;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jamil Najafov (necefov33@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.az );
|
||||
|
||||
return datepicker.regional.az;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Belarusian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Pavel Selitskas <p.selitskas@gmail.com> */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.be );
|
||||
|
||||
return datepicker.regional.be;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Bulgarian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Stoyan Kyosev (http://svest.org). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -35,4 +42,9 @@ datepicker.setDefaults( datepicker.regional.bg );
|
||||
|
||||
return datepicker.regional.bg;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Bosnian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Kenan Konjo. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.bs );
|
||||
|
||||
return datepicker.regional.bs;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Inicialització en català per a l'extensió 'UI date picker' per jQuery. */
|
||||
/* Writers: (joan.leon@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.ca );
|
||||
|
||||
return datepicker.regional.ca;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Czech initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Tomas Muller (tomas@tomas-muller.net). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.cs );
|
||||
|
||||
return datepicker.regional.cs;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Welsh/UK initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by William Griffiths. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional[ "cy-GB" ] );
|
||||
|
||||
return datepicker.regional[ "cy-GB" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Danish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jan Christensen ( deletestuff@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.da );
|
||||
|
||||
return datepicker.regional.da;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* German initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Milian Wolff (mail@milianw.de). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.de );
|
||||
|
||||
return datepicker.regional.de;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Greek (el) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Alex Cicovic (http://www.alexcicovic.com) */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.el );
|
||||
|
||||
return datepicker.regional.el;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* English/Australia initialisation for the jQuery UI date picker plugin. */
|
||||
/* Based on the en-GB initialisation. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "en-AU" ] );
|
||||
|
||||
return datepicker.regional[ "en-AU" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* English/UK initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Stuart. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "en-GB" ] );
|
||||
|
||||
return datepicker.regional[ "en-GB" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* English/New Zealand initialisation for the jQuery UI date picker plugin. */
|
||||
/* Based on the en-GB initialisation. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "en-NZ" ] );
|
||||
|
||||
return datepicker.regional[ "en-NZ" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Esperanto initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Olivier M. (olivierweb@ifrance.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.eo );
|
||||
|
||||
return datepicker.regional.eo;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Inicialización en español para la extensión 'UI date picker' para jQuery. */
|
||||
/* Traducido por Vester (xvester@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.es );
|
||||
|
||||
return datepicker.regional.es;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Estonian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mart Sõmermaa (mrts.pydev at gmail com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional.et );
|
||||
|
||||
return datepicker.regional.et;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,13 +1,20 @@
|
||||
/* Karrikas-ek itzulia (karrikas@karrikas.com) */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -33,4 +40,9 @@ datepicker.setDefaults( datepicker.regional.eu );
|
||||
|
||||
return datepicker.regional.eu;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,15 +1,22 @@
|
||||
/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
|
||||
/* Javad Mowlanezhad -- jmowla@gmail.com */
|
||||
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -70,4 +77,9 @@ datepicker.setDefaults( datepicker.regional.fa );
|
||||
|
||||
return datepicker.regional.fa;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Finnish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Harri Kilpiö (harrikilpio@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.fi );
|
||||
|
||||
return datepicker.regional.fi;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Faroese initialisation for the jQuery UI date picker plugin */
|
||||
/* Written by Sverri Mohr Olsen, sverrimo@gmail.com */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional.fo );
|
||||
|
||||
return datepicker.regional.fo;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,13 +1,20 @@
|
||||
/* Canadian-French initialisation for the jQuery UI date picker plugin. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "fr-CA" ] );
|
||||
|
||||
return datepicker.regional[ "fr-CA" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Swiss-French initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written Martin Voelkle (martin.voelkle@e-tc.ch). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "fr-CH" ] );
|
||||
|
||||
return datepicker.regional[ "fr-CH" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -2,15 +2,22 @@
|
||||
/* Written by Keith Wood (kbwood{at}iinet.com.au),
|
||||
Stéphane Nahmani (sholby@sholby.net),
|
||||
Stéphane Raimbault <stephane.raimbault@gmail.com> */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -36,4 +43,9 @@ datepicker.setDefaults( datepicker.regional.fr );
|
||||
|
||||
return datepicker.regional.fr;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Galician localization for 'UI date picker' jQuery extension. */
|
||||
/* Translated by Jorge Barreiro <yortx.barry@gmail.com>. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.gl );
|
||||
|
||||
return datepicker.regional.gl;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Hebrew initialisation for the UI Datepicker extension. */
|
||||
/* Written by Amir Hardon (ahardon at gmail dot com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.he );
|
||||
|
||||
return datepicker.regional.he;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Hindi initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Michael Dawart. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.hi );
|
||||
|
||||
return datepicker.regional.hi;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Croatian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Vjekoslav Nesek. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.hr );
|
||||
|
||||
return datepicker.regional.hr;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,13 +1,20 @@
|
||||
/* Hungarian initialisation for the jQuery UI date picker plugin. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -33,4 +40,9 @@ datepicker.setDefaults( datepicker.regional.hu );
|
||||
|
||||
return datepicker.regional.hu;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.hy );
|
||||
|
||||
return datepicker.regional.hy;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Indonesian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Deden Fathurahman (dedenf@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.id );
|
||||
|
||||
return datepicker.regional.id;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Icelandic initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Haukur H. Thorsson (haukur@eskill.is). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional.is );
|
||||
|
||||
return datepicker.regional.is;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Italian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Antonello Pasella (antonello.pasella@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "it-CH" ] );
|
||||
|
||||
return datepicker.regional[ "it-CH" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Italian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Antonello Pasella (antonello.pasella@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.it );
|
||||
|
||||
return datepicker.regional.it;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Japanese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Kentaro SATO (kentaro@ranvis.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.ja );
|
||||
|
||||
return datepicker.regional.ja;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Georgian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Lado Lomidze (lado.lomidze@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -45,4 +52,9 @@ datepicker.setDefaults( datepicker.regional.ka );
|
||||
|
||||
return datepicker.regional.ka;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.kk );
|
||||
|
||||
return datepicker.regional.kk;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Khmer initialisation for the jQuery calendar extension. */
|
||||
/* Written by Chandara Om (chandara.teacher@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.km );
|
||||
|
||||
return datepicker.regional.km;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Korean initialisation for the jQuery calendar extension. */
|
||||
/* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie and Myeongjin Lee. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.ko );
|
||||
|
||||
return datepicker.regional.ko;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Kyrgyz (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Sergey Kartashov (ebishkek@yandex.ru). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -35,4 +42,9 @@ datepicker.setDefaults( datepicker.regional.ky );
|
||||
|
||||
return datepicker.regional.ky;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Luxembourgish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Michel Weimerskirch <michel@weimerskirch.net> */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional.lb );
|
||||
|
||||
return datepicker.regional.lb;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* @author Arturas Paleicikas <arturas@avalon.lt> */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional.lt );
|
||||
|
||||
return datepicker.regional.lt;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* @author Arturas Paleicikas <arturas.paleicikas@metasite.net> */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional.lv );
|
||||
|
||||
return datepicker.regional.lv;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Macedonian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Stojce Slavkovski. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.mk );
|
||||
|
||||
return datepicker.regional.mk;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Saji Nediyanchath (saji89@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.ml );
|
||||
|
||||
return datepicker.regional.ml;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Malaysian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.ms );
|
||||
|
||||
return datepicker.regional.ms;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Norwegian Bokmål initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Bjørn Johansen (post@bjornjohansen.no). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -46,4 +53,9 @@ datepicker.setDefaults( datepicker.regional.nb );
|
||||
|
||||
return datepicker.regional.nb;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Dutch (Belgium) initialisation for the jQuery UI date picker plugin. */
|
||||
/* David De Sloovere @DavidDeSloovere */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "nl-BE" ] );
|
||||
|
||||
return datepicker.regional[ "nl-BE" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.nl );
|
||||
|
||||
return datepicker.regional.nl;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Norwegian Nynorsk initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Bjørn Johansen (post@bjornjohansen.no). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -46,4 +53,9 @@ datepicker.setDefaults( datepicker.regional.nn );
|
||||
|
||||
return datepicker.regional.nn;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,15 +1,22 @@
|
||||
/* Norwegian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Naimdjon Takhirov (naimdjon@gmail.com). */
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -47,4 +54,9 @@ datepicker.setDefaults( datepicker.regional.no );
|
||||
|
||||
return datepicker.regional.no;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Polish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.pl );
|
||||
|
||||
return datepicker.regional.pl;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Brazilian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Leonildo Costa Silva (leocsilva@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -42,4 +49,9 @@ datepicker.setDefaults( datepicker.regional[ "pt-BR" ] );
|
||||
|
||||
return datepicker.regional[ "pt-BR" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,13 +1,20 @@
|
||||
/* Portuguese initialisation for the jQuery UI date picker plugin. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -41,4 +48,9 @@ datepicker.setDefaults( datepicker.regional.pt );
|
||||
|
||||
return datepicker.regional.pt;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Romansh initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -58,4 +65,9 @@ datepicker.setDefaults( datepicker.regional.rm );
|
||||
|
||||
return datepicker.regional.rm;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -3,15 +3,22 @@
|
||||
* Written by Edmond L. (ll_edmond@walla.com)
|
||||
* and Ionut G. Stan (ionut.g.stan@gmail.com)
|
||||
*/
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -37,4 +44,9 @@ datepicker.setDefaults( datepicker.regional.ro );
|
||||
|
||||
return datepicker.regional.ro;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Andrew Stromnov (stromnov@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.ru );
|
||||
|
||||
return datepicker.regional.ru;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Slovak initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Vojtech Rinik (vojto@hmm.sk). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.sk );
|
||||
|
||||
return datepicker.regional.sk;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,15 +1,22 @@
|
||||
/* Slovenian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jaka Jancar (jaka@kubje.org). */
|
||||
/* c = č, s = š z = ž C = Č S = Š Z = Ž */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -35,4 +42,9 @@ datepicker.setDefaults( datepicker.regional.sl );
|
||||
|
||||
return datepicker.regional.sl;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Albanian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Flakron Bytyqi (flakron@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.sq );
|
||||
|
||||
return datepicker.regional.sq;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Serbian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Dejan Dimić. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "sr-SR" ] );
|
||||
|
||||
return datepicker.regional[ "sr-SR" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Serbian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Dejan Dimić. */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.sr );
|
||||
|
||||
return datepicker.regional.sr;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Swedish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Anders Ekdahl ( anders@nomadiz.se). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.sv );
|
||||
|
||||
return datepicker.regional.sv;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by S A Sureshkumar (saskumar@live.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -50,4 +57,9 @@ datepicker.setDefaults( datepicker.regional.ta );
|
||||
|
||||
return datepicker.regional.ta;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Thai initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by pipo (pipo@sixhead.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.th );
|
||||
|
||||
return datepicker.regional.th;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Abdurahmon Saidov (saidovab@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.tj );
|
||||
|
||||
return datepicker.regional.tj;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Turkish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Izzet Emre Erkan (kara@karalamalar.net). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.tr );
|
||||
|
||||
return datepicker.regional.tr;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,15 +1,22 @@
|
||||
/* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Maxim Drogobitskiy (maxdao@gmail.com). */
|
||||
/* Corrected by Igor Milla (igor.fsp.milla@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -35,4 +42,9 @@ datepicker.setDefaults( datepicker.regional.uk );
|
||||
|
||||
return datepicker.regional.uk;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Vietnamese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional.vi );
|
||||
|
||||
return datepicker.regional.vi;
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Cloudream (cloudream@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "zh-CN" ] );
|
||||
|
||||
return datepicker.regional[ "zh-CN" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by SCCY (samuelcychan@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "zh-HK" ] );
|
||||
|
||||
return datepicker.regional[ "zh-HK" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
@ -1,14 +1,21 @@
|
||||
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Ressol (ressol@gmail.com). */
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "../widgets/datepicker" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
// Globals
|
||||
factory( global.jQuery.datepicker );
|
||||
}
|
||||
}( function( datepicker ) {
|
||||
|
||||
@ -34,4 +41,9 @@ datepicker.setDefaults( datepicker.regional[ "zh-TW" ] );
|
||||
|
||||
return datepicker.regional[ "zh-TW" ];
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
24
ui/ie.js
24
ui/ie.js
@ -1,15 +1,27 @@
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
} ( function( $ ) {
|
||||
}( function( $ ) {
|
||||
|
||||
// This file is deprecated
|
||||
return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
22
ui/jquery-1-7.js
vendored
22
ui/jquery-1-7.js
vendored
@ -12,15 +12,22 @@
|
||||
//>>group: Core
|
||||
//>>description: Support version 1.7.x of jQuery core
|
||||
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
( function( factory, global ) {
|
||||
if (
|
||||
typeof require === "function" &&
|
||||
typeof exports === "object" &&
|
||||
typeof module === "object" ) {
|
||||
|
||||
// CommonJS or Node
|
||||
factory( require( "jquery" ), require( "./version" ) );
|
||||
} else if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
// Globals
|
||||
factory( global.jQuery );
|
||||
}
|
||||
}( function( $ ) {
|
||||
|
||||
@ -86,4 +93,9 @@ if ( $.fn.jquery.substring( 0, 3 ) === "1.7" ) {
|
||||
};
|
||||
}
|
||||
|
||||
} ) );
|
||||
},
|
||||
typeof global !== "undefined" ? global :
|
||||
typeof self !== "undefined" ? self :
|
||||
typeof window !== "undefined" ? window :
|
||||
{}
|
||||
) );
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user