From fcf97a033f43f0ba5262d7aeca330fac3e3c1398 Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Wed, 30 Mar 2016 23:42:01 -0400 Subject: [PATCH] Controlgroup: Fix line length issues Ref gh-1690 --- ui/widgets/controlgroup.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/widgets/controlgroup.js b/ui/widgets/controlgroup.js index ceb78c7c3..1f0da070e 100644 --- a/ui/widgets/controlgroup.js +++ b/ui/widgets/controlgroup.js @@ -86,7 +86,8 @@ return $.widget( "ui.controlgroup", { if ( widget === "controlgroupLabel" ) { labels = that.element.find( selector ); labels.each( function() { - $( this ).contents().wrapAll( "" ); + $( this ).contents() + .wrapAll( "" ); } ); that._addClass( labels, null, "ui-widget ui-widget-content ui-state-default" ); childWidgets = childWidgets.concat( labels.get() ); -- 2.39.5