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