diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-30 23:42:01 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-04-13 11:31:53 -0400 |
commit | fcf97a033f43f0ba5262d7aeca330fac3e3c1398 (patch) | |
tree | d0d1de20bd1dd701dd02759edfd47800a4f32a7a /ui | |
parent | c57f4e5ced7fb2d0ff8a71ded8c267e61829af01 (diff) | |
download | jquery-ui-fcf97a033f43f0ba5262d7aeca330fac3e3c1398.tar.gz jquery-ui-fcf97a033f43f0ba5262d7aeca330fac3e3c1398.zip |
Controlgroup: Fix line length issues
Ref gh-1690
Diffstat (limited to 'ui')
-rw-r--r-- | ui/widgets/controlgroup.js | 3 |
1 files changed, 2 insertions, 1 deletions
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( "<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() ); |