File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -438,12 +438,13 @@ $.widget( "ui.dialog", {
438
438
}
439
439
} ) ;
440
440
441
- var uiDialogHeadingLevel = Number . isInteger ( this . options . uiDialogTitleHeadingLevel )
442
- && this . options . uiDialogTitleHeadingLevel > 0
443
- && this . options . uiDialogTitleHeadingLevel <= 6
444
- ? "h" + this . options . uiDialogTitleHeadingLevel : "span" ;
441
+ var uiDialogHeadingLevel = Number . isInteger ( this . options . uiDialogTitleHeadingLevel ) &&
442
+ this . options . uiDialogTitleHeadingLevel > 0 &&
443
+ this . options . uiDialogTitleHeadingLevel <= 6 ?
444
+ "h" + this . options . uiDialogTitleHeadingLevel : "span" ;
445
445
446
- uiDialogTitle = $ ( "<" + uiDialogHeadingLevel + ">" ) . uniqueId ( ) . prependTo ( this . uiDialogTitlebar ) ;
446
+ uiDialogTitle = $ ( "<" + uiDialogHeadingLevel + ">" )
447
+ . uniqueId ( ) . prependTo ( this . uiDialogTitlebar ) ;
447
448
this . _addClass ( uiDialogTitle , "ui-dialog-title" ) ;
448
449
this . _title ( uiDialogTitle ) ;
449
450
You can’t perform that action at this time.
0 commit comments