mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 02:09:22 +02:00
Add Calendar
This commit is contained in:
parent
be8ebd1227
commit
47a4532d0b
1165 changed files with 156626 additions and 11163 deletions
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" )
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue