1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 02:09:22 +02:00

Add Calendar

This commit is contained in:
Daniel Neto 2024-05-03 12:16:27 -03:00
parent be8ebd1227
commit 47a4532d0b
1165 changed files with 156626 additions and 11163 deletions

View file

@ -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;