Skip to content

Commit fcf97a0

Browse files
arschmitzscottgonzalez
authored andcommitted
Controlgroup: Fix line length issues
Ref jquerygh-1690
1 parent c57f4e5 commit fcf97a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/widgets/controlgroup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ return $.widget( "ui.controlgroup", {
8686
if ( widget === "controlgroupLabel" ) {
8787
labels = that.element.find( selector );
8888
labels.each( function() {
89-
$( this ).contents().wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
89+
$( this ).contents()
90+
.wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
9091
} );
9192
that._addClass( labels, null, "ui-widget ui-widget-content ui-state-default" );
9293
childWidgets = childWidgets.concat( labels.get() );

0 commit comments

Comments
 (0)