]> source.dussan.org Git - jquery-ui.git/commitdiff
Controlgroup: Fix line length issues
authorAlexander Schmitz <arschmitz@gmail.com>
Thu, 31 Mar 2016 03:42:01 +0000 (23:42 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 13 Apr 2016 15:31:53 +0000 (11:31 -0400)
Ref gh-1690

ui/widgets/controlgroup.js

index ceb78c7c33546a780b3cf5dec32f614053c49f71..1f0da070e7d7956194dd29b92d821cf685f9c636 100644 (file)
@@ -86,7 +86,8 @@ return $.widget( "ui.controlgroup", {
                        if ( widget === "controlgroupLabel" ) {
                                labels = that.element.find( selector );
                                labels.each( function() {
-                                       $( this ).contents().wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
+                                       $( this ).contents()
+                                               .wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
                                } );
                                that._addClass( labels, null, "ui-widget ui-widget-content ui-state-default" );
                                childWidgets = childWidgets.concat( labels.get() );