Skip to content

Commit c22ba5b

Browse files
committed
Fix the line length lint error
1 parent 14dc459 commit c22ba5b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ui/widgets/dialog.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,9 @@ $.widget( "ui.dialog", {
438438
}
439439
} );
440440

441-
uiDialogTitle = $( "<" + this.options.uiDialogTitleTagName + ">" ).uniqueId().prependTo( this.uiDialogTitlebar );
441+
uiDialogTitle = $( "<" + this.options.uiDialogTitleTagName + ">" )
442+
.uniqueId()
443+
.prependTo( this.uiDialogTitlebar );
442444
this._addClass( uiDialogTitle, "ui-dialog-title" );
443445
this._title( uiDialogTitle );
444446

0 commit comments

Comments
 (0)