mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
Update node modules
This commit is contained in:
parent
52a013772f
commit
09d8558456
858 changed files with 5466 additions and 544833 deletions
9
node_modules/jquery-ui/ui/widgets/menu.js
generated
vendored
9
node_modules/jquery-ui/ui/widgets/menu.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* jQuery UI Menu 1.13.3
|
||||
* jQuery UI Menu 1.14.0
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
|
@ -26,7 +26,6 @@
|
|||
"jquery",
|
||||
"../keycode",
|
||||
"../position",
|
||||
"../safe-active-element",
|
||||
"../unique-id",
|
||||
"../version",
|
||||
"../widget"
|
||||
|
@ -40,7 +39,7 @@
|
|||
"use strict";
|
||||
|
||||
return $.widget( "ui.menu", {
|
||||
version: "1.13.3",
|
||||
version: "1.14.0",
|
||||
defaultElement: "<ul>",
|
||||
delay: 300,
|
||||
options: {
|
||||
|
@ -87,7 +86,7 @@ return $.widget( "ui.menu", {
|
|||
},
|
||||
"click .ui-menu-item": function( event ) {
|
||||
var target = $( event.target );
|
||||
var active = $( $.ui.safeActiveElement( this.document[ 0 ] ) );
|
||||
var active = $( this.document[ 0 ].activeElement );
|
||||
if ( !this.mouseHandled && target.not( ".ui-state-disabled" ).length ) {
|
||||
this.select( event );
|
||||
|
||||
|
@ -131,7 +130,7 @@ return $.widget( "ui.menu", {
|
|||
this._delay( function() {
|
||||
var notContained = !$.contains(
|
||||
this.element[ 0 ],
|
||||
$.ui.safeActiveElement( this.document[ 0 ] )
|
||||
this.document[ 0 ].activeElement
|
||||
);
|
||||
if ( notContained ) {
|
||||
this.collapseAll( event );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue