mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
This commit is contained in:
parent
a8e3c8c7a3
commit
43af632a28
2986 changed files with 50716 additions and 116930 deletions
13
node_modules/jquery-ui/ui/widgets/dialog.js
generated
vendored
13
node_modules/jquery-ui/ui/widgets/dialog.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* jQuery UI Dialog 1.14.0
|
||||
* jQuery UI Dialog 1.14.1
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
|
@ -45,7 +45,7 @@
|
|||
"use strict";
|
||||
|
||||
$.widget( "ui.dialog", {
|
||||
version: "1.14.0",
|
||||
version: "1.14.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoOpen: true,
|
||||
|
@ -81,6 +81,7 @@ $.widget( "ui.dialog", {
|
|||
resizable: true,
|
||||
show: null,
|
||||
title: null,
|
||||
uiDialogTitleHeadingLevel: 0,
|
||||
width: 300,
|
||||
|
||||
// Callbacks
|
||||
|
@ -437,7 +438,13 @@ $.widget( "ui.dialog", {
|
|||
}
|
||||
} );
|
||||
|
||||
uiDialogTitle = $( "<span>" ).uniqueId().prependTo( this.uiDialogTitlebar );
|
||||
var uiDialogHeadingLevel = Number.isInteger( this.options.uiDialogTitleHeadingLevel ) &&
|
||||
this.options.uiDialogTitleHeadingLevel > 0 &&
|
||||
this.options.uiDialogTitleHeadingLevel <= 6 ?
|
||||
"h" + this.options.uiDialogTitleHeadingLevel : "span";
|
||||
|
||||
uiDialogTitle = $( "<" + uiDialogHeadingLevel + ">" )
|
||||
.uniqueId().prependTo( this.uiDialogTitlebar );
|
||||
this._addClass( uiDialogTitle, "ui-dialog-title" );
|
||||
this._title( uiDialogTitle );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue