wp core update 6.6
This commit is contained in:
21
wp/wp-includes/js/jquery/ui/datepicker.js
vendored
21
wp/wp-includes/js/jquery/ui/datepicker.js
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
|
||||
@@ -25,7 +25,8 @@
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"./core"
|
||||
"../version",
|
||||
"../keycode"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
@@ -35,7 +36,7 @@
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.2" } } );
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.3" } } );
|
||||
|
||||
var datepicker_instActive;
|
||||
|
||||
@@ -352,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" );
|
||||
},
|
||||
|
||||
@@ -2232,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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user