diff options
Diffstat (limited to 'wp-includes/js/jquery/ui/datepicker.js')
-rw-r--r-- | wp-includes/js/jquery/ui/datepicker.js | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/wp-includes/js/jquery/ui/datepicker.js b/wp-includes/js/jquery/ui/datepicker.js index 7694718..212fb74 100644 --- a/wp-includes/js/jquery/ui/datepicker.js +++ b/wp-includes/js/jquery/ui/datepicker.js @@ -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; |