mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 19:42:38 +02:00
Add Calendar
This commit is contained in:
parent
be8ebd1227
commit
47a4532d0b
1165 changed files with 156626 additions and 11163 deletions
2
node_modules/jquery-ui/ui/core.js
generated
vendored
2
node_modules/jquery-ui/ui/core.js
generated
vendored
|
@ -11,7 +11,7 @@ define( [
|
|||
"./ie",
|
||||
"./keycode",
|
||||
"./labels",
|
||||
"./jquery-patch.js",
|
||||
"./jquery-patch",
|
||||
"./plugin",
|
||||
"./safe-active-element",
|
||||
"./safe-blur",
|
||||
|
|
10
node_modules/jquery-ui/ui/data.js
generated
vendored
10
node_modules/jquery-ui/ui/data.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI :data 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI :data 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: :data Selector
|
||||
//>>group: Core
|
||||
//>>description: Selects elements which have data stored under the specified key.
|
||||
//>>docs: http://api.jqueryui.com/data-selector/
|
||||
//>>docs: https://api.jqueryui.com/data-selector/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/disable-selection.js
generated
vendored
10
node_modules/jquery-ui/ui/disable-selection.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Disable Selection 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Disable Selection 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: disableSelection
|
||||
//>>group: Core
|
||||
//>>description: Disable selection of text content within the set of matched elements.
|
||||
//>>docs: http://api.jqueryui.com/disableSelection/
|
||||
//>>docs: https://api.jqueryui.com/disableSelection/
|
||||
|
||||
// This file is deprecated
|
||||
( function( factory ) {
|
||||
|
|
18
node_modules/jquery-ui/ui/effect.js
generated
vendored
18
node_modules/jquery-ui/ui/effect.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/*!
|
||||
* jQuery UI Effects 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Effects Core
|
||||
|
@ -12,8 +12,8 @@
|
|||
/* eslint-disable max-len */
|
||||
//>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/category/effects-core/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/category/effects-core/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
@ -402,7 +402,7 @@ if ( $.uiBackCompat !== false ) {
|
|||
}
|
||||
|
||||
$.extend( $.effects, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
|
||||
define: function( name, mode, effect ) {
|
||||
if ( !effect ) {
|
||||
|
@ -525,7 +525,7 @@ $.extend( $.effects, {
|
|||
|
||||
// Lock in margins first to account for form elements, which
|
||||
// will change margin if you explicitly set height
|
||||
// see: http://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380
|
||||
// see: https://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380
|
||||
// Support: Safari
|
||||
element.css( {
|
||||
marginTop: element.css( "marginTop" ),
|
||||
|
@ -919,7 +919,7 @@ $.fx.step.clip = function( fx ) {
|
|||
|
||||
( function() {
|
||||
|
||||
// Based on easing equations from Robert Penner (http://www.robertpenner.com/easing)
|
||||
// Based on easing equations from Robert Penner (http://robertpenner.com/easing)
|
||||
|
||||
var baseEasings = {};
|
||||
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-blind.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-blind.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Blind 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Blind 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Blind Effect
|
||||
//>>group: Effects
|
||||
//>>description: Blinds the element.
|
||||
//>>docs: http://api.jqueryui.com/blind-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/blind-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-bounce.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-bounce.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Bounce 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Bounce 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Bounce Effect
|
||||
//>>group: Effects
|
||||
//>>description: Bounces an element horizontally or vertically n times.
|
||||
//>>docs: http://api.jqueryui.com/bounce-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/bounce-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-clip.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-clip.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Clip 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Clip 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Clip Effect
|
||||
//>>group: Effects
|
||||
//>>description: Clips the element on and off like an old TV.
|
||||
//>>docs: http://api.jqueryui.com/clip-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/clip-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-drop.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-drop.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Drop 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Drop 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Drop Effect
|
||||
//>>group: Effects
|
||||
//>>description: Moves an element in one direction and hides it at the same time.
|
||||
//>>docs: http://api.jqueryui.com/drop-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/drop-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-explode.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-explode.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/*!
|
||||
* jQuery UI Effects Explode 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Explode 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Explode Effect
|
||||
|
@ -12,8 +12,8 @@
|
|||
/* eslint-disable max-len */
|
||||
//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/explode-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/explode-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-fade.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-fade.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Fade 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Fade 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Fade Effect
|
||||
//>>group: Effects
|
||||
//>>description: Fades the element.
|
||||
//>>docs: http://api.jqueryui.com/fade-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/fade-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-fold.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-fold.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Fold 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Fold 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Fold Effect
|
||||
//>>group: Effects
|
||||
//>>description: Folds an element first horizontally and then vertically.
|
||||
//>>docs: http://api.jqueryui.com/fold-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/fold-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-highlight.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-highlight.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Highlight 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Highlight 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Highlight Effect
|
||||
//>>group: Effects
|
||||
//>>description: Highlights the background of an element in a defined color for a custom duration.
|
||||
//>>docs: http://api.jqueryui.com/highlight-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/highlight-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-puff.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-puff.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Puff 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Puff 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Puff Effect
|
||||
//>>group: Effects
|
||||
//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
|
||||
//>>docs: http://api.jqueryui.com/puff-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/puff-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-pulsate.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-pulsate.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Pulsate 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Pulsate 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Pulsate Effect
|
||||
//>>group: Effects
|
||||
//>>description: Pulsates an element n times by changing the opacity to zero and back.
|
||||
//>>docs: http://api.jqueryui.com/pulsate-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/pulsate-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-scale.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-scale.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Scale 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Scale 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Scale Effect
|
||||
//>>group: Effects
|
||||
//>>description: Grows or shrinks an element and its content.
|
||||
//>>docs: http://api.jqueryui.com/scale-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/scale-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-shake.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-shake.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Shake 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Shake 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Shake Effect
|
||||
//>>group: Effects
|
||||
//>>description: Shakes an element horizontally or vertically n times.
|
||||
//>>docs: http://api.jqueryui.com/shake-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/shake-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-size.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-size.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Size 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Size 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Size Effect
|
||||
//>>group: Effects
|
||||
//>>description: Resize an element to a specified width and height.
|
||||
//>>docs: http://api.jqueryui.com/size-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/size-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-slide.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-slide.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Slide 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Slide 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Slide Effect
|
||||
//>>group: Effects
|
||||
//>>description: Slides an element in and out of the viewport.
|
||||
//>>docs: http://api.jqueryui.com/slide-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/slide-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
12
node_modules/jquery-ui/ui/effects/effect-transfer.js
generated
vendored
12
node_modules/jquery-ui/ui/effects/effect-transfer.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Effects Transfer 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Effects Transfer 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Transfer Effect
|
||||
//>>group: Effects
|
||||
//>>description: Displays a transfer effect from one element to another.
|
||||
//>>docs: http://api.jqueryui.com/transfer-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
//>>docs: https://api.jqueryui.com/transfer-effect/
|
||||
//>>demos: https://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/focusable.js
generated
vendored
10
node_modules/jquery-ui/ui/focusable.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Focusable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Focusable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: :focusable Selector
|
||||
//>>group: Core
|
||||
//>>description: Selects elements which can be focused.
|
||||
//>>docs: http://api.jqueryui.com/focusable-selector/
|
||||
//>>docs: https://api.jqueryui.com/focusable-selector/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/form-reset-mixin.js
generated
vendored
10
node_modules/jquery-ui/ui/form-reset-mixin.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Form Reset Mixin 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Form Reset Mixin 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Form Reset Mixin
|
||||
//>>group: Core
|
||||
//>>description: Refresh input widgets when their form is reset
|
||||
//>>docs: http://api.jqueryui.com/form-reset-mixin/
|
||||
//>>docs: https://api.jqueryui.com/form-reset-mixin/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
2
node_modules/jquery-ui/ui/i18n/datepicker-bg.js
generated
vendored
2
node_modules/jquery-ui/ui/i18n/datepicker-bg.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/* Bulgarian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Stoyan Kyosev (http://svest.org). */
|
||||
/* Written by Stoyan Kyosev. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
|
|
2
node_modules/jquery-ui/ui/i18n/datepicker-el.js
generated
vendored
2
node_modules/jquery-ui/ui/i18n/datepicker-el.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/* Greek (el) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Alex Cicovic (http://www.alexcicovic.com) */
|
||||
/* Written by Alex Cicovic (https://alexcicovic.com) */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
|
|
2
node_modules/jquery-ui/ui/i18n/datepicker-nl.js
generated
vendored
2
node_modules/jquery-ui/ui/i18n/datepicker-nl.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
||||
/* Written by Mathias Bynens <https://mathiasbynens.be/> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
|
|
8
node_modules/jquery-ui/ui/jquery-patch.js
generated
vendored
8
node_modules/jquery-ui/ui/jquery-patch.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/*!
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
10
node_modules/jquery-ui/ui/keycode.js
generated
vendored
10
node_modules/jquery-ui/ui/keycode.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Keycode 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Keycode 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Keycode
|
||||
//>>group: Core
|
||||
//>>description: Provide keycodes as keynames
|
||||
//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
|
||||
//>>docs: https://api.jqueryui.com/jQuery.ui.keyCode/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/labels.js
generated
vendored
10
node_modules/jquery-ui/ui/labels.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Labels 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Labels 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: labels
|
||||
//>>group: Core
|
||||
//>>description: Find all the labels associated with a given input
|
||||
//>>docs: http://api.jqueryui.com/labels/
|
||||
//>>docs: https://api.jqueryui.com/labels/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
14
node_modules/jquery-ui/ui/position.js
generated
vendored
14
node_modules/jquery-ui/ui/position.js
generated
vendored
|
@ -1,19 +1,19 @@
|
|||
/*!
|
||||
* jQuery UI Position 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Position 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* http://api.jqueryui.com/position/
|
||||
* https://api.jqueryui.com/position/
|
||||
*/
|
||||
|
||||
//>>label: Position
|
||||
//>>group: Core
|
||||
//>>description: Positions elements relative to other elements.
|
||||
//>>docs: http://api.jqueryui.com/position/
|
||||
//>>demos: http://jqueryui.com/position/
|
||||
//>>docs: https://api.jqueryui.com/position/
|
||||
//>>demos: https://jqueryui.com/position/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/scroll-parent.js
generated
vendored
10
node_modules/jquery-ui/ui/scroll-parent.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Scroll Parent 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Scroll Parent 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: scrollParent
|
||||
//>>group: Core
|
||||
//>>description: Get the closest ancestor element that is scrollable.
|
||||
//>>docs: http://api.jqueryui.com/scrollParent/
|
||||
//>>docs: https://api.jqueryui.com/scrollParent/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/tabbable.js
generated
vendored
10
node_modules/jquery-ui/ui/tabbable.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Tabbable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Tabbable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: :tabbable Selector
|
||||
//>>group: Core
|
||||
//>>description: Selects elements which can be tabbed to.
|
||||
//>>docs: http://api.jqueryui.com/tabbable-selector/
|
||||
//>>docs: https://api.jqueryui.com/tabbable-selector/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
10
node_modules/jquery-ui/ui/unique-id.js
generated
vendored
10
node_modules/jquery-ui/ui/unique-id.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Unique ID 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Unique ID 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: uniqueId
|
||||
//>>group: Core
|
||||
//>>description: Functions to generate and remove uniqueId's
|
||||
//>>docs: http://api.jqueryui.com/uniqueId/
|
||||
//>>docs: https://api.jqueryui.com/uniqueId/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
2
node_modules/jquery-ui/ui/vendor/jquery-color/jquery.color.js
generated
vendored
2
node_modules/jquery-ui/ui/vendor/jquery-color/jquery.color.js
generated
vendored
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* Date: Sun May 10 09:02:36 2020 +0200
|
||||
*/
|
||||
|
|
2
node_modules/jquery-ui/ui/version.js
generated
vendored
2
node_modules/jquery-ui/ui/version.js
generated
vendored
|
@ -15,6 +15,6 @@
|
|||
|
||||
$.ui = $.ui || {};
|
||||
|
||||
return $.ui.version = "1.13.2";
|
||||
return $.ui.version = "1.13.3";
|
||||
|
||||
} );
|
||||
|
|
12
node_modules/jquery-ui/ui/widget.js
generated
vendored
12
node_modules/jquery-ui/ui/widget.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Widget 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Widget 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Widget
|
||||
//>>group: Core
|
||||
//>>description: Provides a factory for creating stateful widgets with a common API.
|
||||
//>>docs: http://api.jqueryui.com/jQuery.widget/
|
||||
//>>demos: http://jqueryui.com/widget/
|
||||
//>>docs: https://api.jqueryui.com/jQuery.widget/
|
||||
//>>demos: https://jqueryui.com/widget/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/accordion.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/accordion.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/*!
|
||||
* jQuery UI Accordion 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Accordion 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Accordion
|
||||
|
@ -12,8 +12,8 @@
|
|||
/* eslint-disable max-len */
|
||||
//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/accordion/
|
||||
//>>demos: http://jqueryui.com/accordion/
|
||||
//>>docs: https://api.jqueryui.com/accordion/
|
||||
//>>demos: https://jqueryui.com/accordion/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/accordion.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -40,7 +40,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.accordion", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
active: 0,
|
||||
animate: {},
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/autocomplete.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/autocomplete.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Autocomplete 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Autocomplete 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Autocomplete
|
||||
//>>group: Widgets
|
||||
//>>description: Lists suggested words as the user is typing.
|
||||
//>>docs: http://api.jqueryui.com/autocomplete/
|
||||
//>>demos: http://jqueryui.com/autocomplete/
|
||||
//>>docs: https://api.jqueryui.com/autocomplete/
|
||||
//>>demos: https://jqueryui.com/autocomplete/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/autocomplete.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -40,7 +40,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.autocomplete", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
defaultElement: "<input>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/button.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/button.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Button 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Button 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Button
|
||||
//>>group: Widgets
|
||||
//>>description: Enhances a form with themeable buttons.
|
||||
//>>docs: http://api.jqueryui.com/button/
|
||||
//>>demos: http://jqueryui.com/button/
|
||||
//>>docs: https://api.jqueryui.com/button/
|
||||
//>>demos: https://jqueryui.com/button/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/button.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -42,7 +42,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.button", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
defaultElement: "<button>",
|
||||
options: {
|
||||
classes: {
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/checkboxradio.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/checkboxradio.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Checkboxradio 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Checkboxradio 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Checkboxradio
|
||||
//>>group: Widgets
|
||||
//>>description: Enhances a form with multiple themeable checkboxes or radio buttons.
|
||||
//>>docs: http://api.jqueryui.com/checkboxradio/
|
||||
//>>demos: http://jqueryui.com/checkboxradio/
|
||||
//>>docs: https://api.jqueryui.com/checkboxradio/
|
||||
//>>demos: https://jqueryui.com/checkboxradio/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/button.css
|
||||
//>>css.structure: ../../themes/base/checkboxradio.css
|
||||
|
@ -38,7 +38,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
disabled: null,
|
||||
label: null,
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/controlgroup.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/controlgroup.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Controlgroup 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Controlgroup 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Controlgroup
|
||||
//>>group: Widgets
|
||||
//>>description: Visually groups form control widgets
|
||||
//>>docs: http://api.jqueryui.com/controlgroup/
|
||||
//>>demos: http://jqueryui.com/controlgroup/
|
||||
//>>docs: https://api.jqueryui.com/controlgroup/
|
||||
//>>demos: https://jqueryui.com/controlgroup/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/controlgroup.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -37,7 +37,7 @@
|
|||
var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
|
||||
|
||||
return $.widget( "ui.controlgroup", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
defaultElement: "<div>",
|
||||
options: {
|
||||
direction: "horizontal",
|
||||
|
|
18
node_modules/jquery-ui/ui/widgets/datepicker.js
generated
vendored
18
node_modules/jquery-ui/ui/widgets/datepicker.js
generated
vendored
|
@ -1,18 +1,18 @@
|
|||
/* eslint-disable max-len, camelcase */
|
||||
/*!
|
||||
* jQuery UI Datepicker 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Datepicker 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Datepicker
|
||||
//>>group: Widgets
|
||||
//>>description: Displays a calendar from an input or inline for selecting dates.
|
||||
//>>docs: http://api.jqueryui.com/datepicker/
|
||||
//>>demos: http://jqueryui.com/datepicker/
|
||||
//>>docs: https://api.jqueryui.com/datepicker/
|
||||
//>>demos: https://jqueryui.com/datepicker/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/datepicker.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -36,7 +36,7 @@
|
|||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.2" } } );
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.3" } } );
|
||||
|
||||
var datepicker_instActive;
|
||||
|
||||
|
@ -353,7 +353,7 @@ $.extend( Datepicker.prototype, {
|
|||
}
|
||||
|
||||
// Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements
|
||||
// http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
|
||||
// https://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
|
||||
inst.dpDiv.css( "display", "block" );
|
||||
},
|
||||
|
||||
|
@ -2233,7 +2233,7 @@ $.fn.datepicker = function( options ) {
|
|||
$.datepicker = new Datepicker(); // singleton instance
|
||||
$.datepicker.initialized = false;
|
||||
$.datepicker.uuid = new Date().getTime();
|
||||
$.datepicker.version = "1.13.2";
|
||||
$.datepicker.version = "1.13.3";
|
||||
|
||||
return $.datepicker;
|
||||
|
||||
|
|
27
node_modules/jquery-ui/ui/widgets/dialog.js
generated
vendored
27
node_modules/jquery-ui/ui/widgets/dialog.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Dialog 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Dialog 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Dialog
|
||||
//>>group: Widgets
|
||||
//>>description: Displays customizable dialog windows.
|
||||
//>>docs: http://api.jqueryui.com/dialog/
|
||||
//>>demos: http://jqueryui.com/dialog/
|
||||
//>>docs: https://api.jqueryui.com/dialog/
|
||||
//>>demos: https://jqueryui.com/dialog/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/dialog.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -47,7 +47,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.dialog", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoOpen: true,
|
||||
|
@ -881,12 +881,15 @@ $.widget( "ui.dialog", {
|
|||
event.preventDefault();
|
||||
instance._focusTabbable();
|
||||
|
||||
// Support: jQuery >=3.4 <3.6 only
|
||||
// Focus re-triggering in jQuery 3.4/3.5 makes the original element
|
||||
// have its focus event propagated last, breaking the re-targeting.
|
||||
// Trigger focus in a delay in addition if needed to avoid the issue
|
||||
// Support: jQuery >=3.4 <3.7 only
|
||||
// In jQuery 3.4-3.6, there are multiple issues with focus/blur
|
||||
// trigger chains or when triggering is done on a hidden element
|
||||
// at least once.
|
||||
// Trigger focus in a delay in addition if needed to avoid the issues.
|
||||
// See https://github.com/jquery/jquery/issues/4382
|
||||
if ( jqMinor === "3.4." || jqMinor === "3.5." ) {
|
||||
// See https://github.com/jquery/jquery/issues/4856
|
||||
// See https://github.com/jquery/jquery/issues/4950
|
||||
if ( jqMinor === "3.4." || jqMinor === "3.5." || jqMinor === "3.6." ) {
|
||||
instance._delay( instance._restoreTabbableFocus );
|
||||
}
|
||||
}
|
||||
|
|
16
node_modules/jquery-ui/ui/widgets/draggable.js
generated
vendored
16
node_modules/jquery-ui/ui/widgets/draggable.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Draggable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Draggable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Draggable
|
||||
//>>group: Interactions
|
||||
//>>description: Enables dragging functionality for any element.
|
||||
//>>docs: http://api.jqueryui.com/draggable/
|
||||
//>>demos: http://jqueryui.com/draggable/
|
||||
//>>docs: https://api.jqueryui.com/draggable/
|
||||
//>>demos: https://jqueryui.com/draggable/
|
||||
//>>css.structure: ../../themes/base/draggable.css
|
||||
|
||||
( function( factory ) {
|
||||
|
@ -40,7 +40,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.draggable", $.ui.mouse, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
widgetEventPrefix: "drag",
|
||||
options: {
|
||||
addClasses: true,
|
||||
|
@ -386,7 +386,7 @@ $.widget( "ui.draggable", $.ui.mouse, {
|
|||
o.appendTo ) );
|
||||
}
|
||||
|
||||
// Http://bugs.jqueryui.com/ticket/9446
|
||||
// https://bugs.jqueryui.com/ticket/9446
|
||||
// a helper function can return the original element
|
||||
// which wouldn't have been set to relative in _create
|
||||
if ( helperIsFunction && helper[ 0 ] === this.element[ 0 ] ) {
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/droppable.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/droppable.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Droppable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Droppable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Droppable
|
||||
//>>group: Interactions
|
||||
//>>description: Enables drop targets for draggable elements.
|
||||
//>>docs: http://api.jqueryui.com/droppable/
|
||||
//>>demos: http://jqueryui.com/droppable/
|
||||
//>>docs: https://api.jqueryui.com/droppable/
|
||||
//>>demos: https://jqueryui.com/droppable/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
@ -35,7 +35,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.droppable", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
widgetEventPrefix: "drop",
|
||||
options: {
|
||||
accept: "*",
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/menu.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/menu.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Menu 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Menu 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Menu
|
||||
//>>group: Widgets
|
||||
//>>description: Creates nestable menus.
|
||||
//>>docs: http://api.jqueryui.com/menu/
|
||||
//>>demos: http://jqueryui.com/menu/
|
||||
//>>docs: https://api.jqueryui.com/menu/
|
||||
//>>demos: https://jqueryui.com/menu/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/menu.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -40,7 +40,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.menu", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
defaultElement: "<ul>",
|
||||
delay: 300,
|
||||
options: {
|
||||
|
|
12
node_modules/jquery-ui/ui/widgets/mouse.js
generated
vendored
12
node_modules/jquery-ui/ui/widgets/mouse.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Mouse 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Mouse 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Mouse
|
||||
//>>group: Widgets
|
||||
//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
|
||||
//>>docs: http://api.jqueryui.com/mouse/
|
||||
//>>docs: https://api.jqueryui.com/mouse/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
@ -38,7 +38,7 @@ $( document ).on( "mouseup", function() {
|
|||
} );
|
||||
|
||||
return $.widget( "ui.mouse", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
cancel: "input, textarea, button, select, option",
|
||||
distance: 1,
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/progressbar.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/progressbar.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/*!
|
||||
* jQuery UI Progressbar 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Progressbar 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Progressbar
|
||||
|
@ -12,8 +12,8 @@
|
|||
/* eslint-disable max-len */
|
||||
//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/progressbar/
|
||||
//>>demos: http://jqueryui.com/progressbar/
|
||||
//>>docs: https://api.jqueryui.com/progressbar/
|
||||
//>>demos: https://jqueryui.com/progressbar/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/progressbar.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -38,7 +38,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.progressbar", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-progressbar": "ui-corner-all",
|
||||
|
|
23
node_modules/jquery-ui/ui/widgets/resizable.js
generated
vendored
23
node_modules/jquery-ui/ui/widgets/resizable.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Resizable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Resizable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Resizable
|
||||
//>>group: Interactions
|
||||
//>>description: Enables resize functionality for any element.
|
||||
//>>docs: http://api.jqueryui.com/resizable/
|
||||
//>>demos: http://jqueryui.com/resizable/
|
||||
//>>docs: https://api.jqueryui.com/resizable/
|
||||
//>>demos: https://jqueryui.com/resizable/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/resizable.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -39,7 +39,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.resizable", $.ui.mouse, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
widgetEventPrefix: "resize",
|
||||
options: {
|
||||
alsoResize: false,
|
||||
|
@ -533,15 +533,18 @@ $.widget( "ui.resizable", $.ui.mouse, {
|
|||
if ( this.position.left !== this.prevPosition.left ) {
|
||||
props.left = this.position.left + "px";
|
||||
}
|
||||
|
||||
this.helper.css( props );
|
||||
|
||||
if ( this.size.width !== this.prevSize.width ) {
|
||||
props.width = this.size.width + "px";
|
||||
this.helper.width( props.width );
|
||||
}
|
||||
if ( this.size.height !== this.prevSize.height ) {
|
||||
props.height = this.size.height + "px";
|
||||
this.helper.height( props.height );
|
||||
}
|
||||
|
||||
this.helper.css( props );
|
||||
|
||||
return props;
|
||||
},
|
||||
|
||||
|
@ -1048,7 +1051,7 @@ $.ui.plugin.add( "resizable", "alsoResize", {
|
|||
$( o.alsoResize ).each( function() {
|
||||
var el = $( this );
|
||||
el.data( "ui-resizable-alsoresize", {
|
||||
width: parseFloat( el.width() ), height: parseFloat( el.height() ),
|
||||
width: parseFloat( el.css( "width" ) ), height: parseFloat( el.css( "height" ) ),
|
||||
left: parseFloat( el.css( "left" ) ), top: parseFloat( el.css( "top" ) )
|
||||
} );
|
||||
} );
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/selectable.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/selectable.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Selectable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Selectable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Selectable
|
||||
//>>group: Interactions
|
||||
//>>description: Allows groups of elements to be selected with the mouse.
|
||||
//>>docs: http://api.jqueryui.com/selectable/
|
||||
//>>demos: http://jqueryui.com/selectable/
|
||||
//>>docs: https://api.jqueryui.com/selectable/
|
||||
//>>demos: https://jqueryui.com/selectable/
|
||||
//>>css.structure: ../../themes/base/selectable.css
|
||||
|
||||
( function( factory ) {
|
||||
|
@ -35,7 +35,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.selectable", $.ui.mouse, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoRefresh: true,
|
||||
|
|
26
node_modules/jquery-ui/ui/widgets/selectmenu.js
generated
vendored
26
node_modules/jquery-ui/ui/widgets/selectmenu.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/*!
|
||||
* jQuery UI Selectmenu 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Selectmenu 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Selectmenu
|
||||
|
@ -12,8 +12,8 @@
|
|||
/* eslint-disable max-len */
|
||||
//>>description: Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/selectmenu/
|
||||
//>>demos: http://jqueryui.com/selectmenu/
|
||||
//>>docs: https://api.jqueryui.com/selectmenu/
|
||||
//>>demos: https://jqueryui.com/selectmenu/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/selectmenu.css, ../../themes/base/button.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -44,7 +44,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
defaultElement: "<select>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
|
@ -354,7 +354,12 @@ return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
|||
if ( item.disabled ) {
|
||||
this._addClass( li, null, "ui-state-disabled" );
|
||||
}
|
||||
this._setText( wrapper, item.label );
|
||||
|
||||
if ( item.hidden ) {
|
||||
li.prop( "hidden", true );
|
||||
} else {
|
||||
this._setText( wrapper, item.label );
|
||||
}
|
||||
|
||||
return li.append( wrapper ).appendTo( ul );
|
||||
},
|
||||
|
@ -658,10 +663,6 @@ return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
|||
var that = this,
|
||||
data = [];
|
||||
options.each( function( index, item ) {
|
||||
if ( item.hidden ) {
|
||||
return;
|
||||
}
|
||||
|
||||
data.push( that._parseOption( $( item ), index ) );
|
||||
} );
|
||||
this.items = data;
|
||||
|
@ -675,6 +676,7 @@ return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
|||
index: index,
|
||||
value: option.val(),
|
||||
label: option.text(),
|
||||
hidden: optgroup.prop( "hidden" ) || option.prop( "hidden" ),
|
||||
optgroup: optgroup.attr( "label" ) || "",
|
||||
disabled: optgroup.prop( "disabled" ) || option.prop( "disabled" )
|
||||
};
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/slider.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/slider.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Slider 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Slider 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Slider
|
||||
//>>group: Widgets
|
||||
//>>description: Displays a flexible slider with ranges and accessibility via keyboard.
|
||||
//>>docs: http://api.jqueryui.com/slider/
|
||||
//>>demos: http://jqueryui.com/slider/
|
||||
//>>docs: https://api.jqueryui.com/slider/
|
||||
//>>demos: https://jqueryui.com/slider/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/slider.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -38,7 +38,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.slider", $.ui.mouse, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
widgetEventPrefix: "slide",
|
||||
|
||||
options: {
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/sortable.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/sortable.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Sortable 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Sortable 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Sortable
|
||||
//>>group: Interactions
|
||||
//>>description: Enables items in a list to be sorted using the mouse.
|
||||
//>>docs: http://api.jqueryui.com/sortable/
|
||||
//>>demos: http://jqueryui.com/sortable/
|
||||
//>>docs: https://api.jqueryui.com/sortable/
|
||||
//>>demos: https://jqueryui.com/sortable/
|
||||
//>>css.structure: ../../themes/base/sortable.css
|
||||
|
||||
( function( factory ) {
|
||||
|
@ -38,7 +38,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.sortable", $.ui.mouse, {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
widgetEventPrefix: "sort",
|
||||
ready: false,
|
||||
options: {
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/spinner.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/spinner.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Spinner 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Spinner 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Spinner
|
||||
//>>group: Widgets
|
||||
//>>description: Displays buttons to easily input numbers via the keyboard or mouse.
|
||||
//>>docs: http://api.jqueryui.com/spinner/
|
||||
//>>demos: http://jqueryui.com/spinner/
|
||||
//>>docs: https://api.jqueryui.com/spinner/
|
||||
//>>demos: https://jqueryui.com/spinner/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/spinner.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -50,7 +50,7 @@ function spinnerModifier( fn ) {
|
|||
}
|
||||
|
||||
$.widget( "ui.spinner", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
defaultElement: "<input>",
|
||||
widgetEventPrefix: "spin",
|
||||
options: {
|
||||
|
|
18
node_modules/jquery-ui/ui/widgets/tabs.js
generated
vendored
18
node_modules/jquery-ui/ui/widgets/tabs.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Tabs 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Tabs 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Tabs
|
||||
//>>group: Widgets
|
||||
//>>description: Transforms a set of container elements into a tab structure.
|
||||
//>>docs: http://api.jqueryui.com/tabs/
|
||||
//>>demos: http://jqueryui.com/tabs/
|
||||
//>>docs: https://api.jqueryui.com/tabs/
|
||||
//>>demos: https://jqueryui.com/tabs/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/tabs.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -39,7 +39,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.tabs", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
delay: 300,
|
||||
options: {
|
||||
active: null,
|
||||
|
@ -868,7 +868,7 @@ $.widget( "ui.tabs", {
|
|||
.done( function( response, status, jqXHR ) {
|
||||
|
||||
// support: jQuery <1.8
|
||||
// http://bugs.jquery.com/ticket/11778
|
||||
// https://bugs.jquery.com/ticket/11778
|
||||
setTimeout( function() {
|
||||
panel.html( response );
|
||||
that._trigger( "load", event, eventData );
|
||||
|
@ -879,7 +879,7 @@ $.widget( "ui.tabs", {
|
|||
.fail( function( jqXHR, status ) {
|
||||
|
||||
// support: jQuery <1.8
|
||||
// http://bugs.jquery.com/ticket/11778
|
||||
// https://bugs.jquery.com/ticket/11778
|
||||
setTimeout( function() {
|
||||
complete( jqXHR, status );
|
||||
}, 1 );
|
||||
|
|
14
node_modules/jquery-ui/ui/widgets/tooltip.js
generated
vendored
14
node_modules/jquery-ui/ui/widgets/tooltip.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
/*!
|
||||
* jQuery UI Tooltip 1.13.2
|
||||
* http://jqueryui.com
|
||||
* jQuery UI Tooltip 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Tooltip
|
||||
//>>group: Widgets
|
||||
//>>description: Shows additional information for any element on hover or focus.
|
||||
//>>docs: http://api.jqueryui.com/tooltip/
|
||||
//>>demos: http://jqueryui.com/tooltip/
|
||||
//>>docs: https://api.jqueryui.com/tooltip/
|
||||
//>>demos: https://jqueryui.com/tooltip/
|
||||
//>>css.structure: ../../themes/base/core.css
|
||||
//>>css.structure: ../../themes/base/tooltip.css
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
@ -39,7 +39,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.tooltip", {
|
||||
version: "1.13.2",
|
||||
version: "1.13.3",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-tooltip": "ui-corner-all ui-widget-shadow"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue