1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00

Update node modules

This commit is contained in:
Daniel Neto 2024-09-09 23:54:57 -03:00
parent 52a013772f
commit 09d8558456
858 changed files with 5466 additions and 544833 deletions

View file

@ -1,5 +1,5 @@
/*!
* jQuery UI Draggable 1.13.3
* jQuery UI Draggable 1.14.0
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
@ -25,8 +25,6 @@
"./mouse",
"../data",
"../plugin",
"../safe-active-element",
"../safe-blur",
"../scroll-parent",
"../version",
"../widget"
@ -40,7 +38,7 @@
"use strict";
$.widget( "ui.draggable", $.ui.mouse, {
version: "1.13.3",
version: "1.14.0",
widgetEventPrefix: "drag",
options: {
addClasses: true,
@ -147,7 +145,7 @@ $.widget( "ui.draggable", $.ui.mouse, {
},
_blurActiveElement: function( event ) {
var activeElement = $.ui.safeActiveElement( this.document[ 0 ] ),
var activeElement = this.document[ 0 ].activeElement,
target = $( event.target );
// Don't blur if the event occurred on an element that is within
@ -158,7 +156,7 @@ $.widget( "ui.draggable", $.ui.mouse, {
}
// Blur any element that currently has focus, see #4261
$.ui.safeBlur( activeElement );
$( activeElement ).trigger( "blur" );
},
_mouseStart: function( event ) {