diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-30 23:42:53 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-04-13 11:31:55 -0400 |
commit | adbd694a3e3d14678775695b17bd1fb7c95efacc (patch) | |
tree | 37e31eafe5a6cf48c94d25c7e92d9737de81f1d3 /ui/widgets/checkboxradio.js | |
parent | fcf97a033f43f0ba5262d7aeca330fac3e3c1398 (diff) | |
download | jquery-ui-adbd694a3e3d14678775695b17bd1fb7c95efacc.tar.gz jquery-ui-adbd694a3e3d14678775695b17bd1fb7c95efacc.zip |
Checkboxradio: Fix line length issues
Ref gh-1690
Diffstat (limited to 'ui/widgets/checkboxradio.js')
-rw-r--r-- | ui/widgets/checkboxradio.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index 300cae8ce..0052b1950 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -71,8 +71,8 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { // input itself. this.label.contents().not( this.element ).each( function() { - // The label contents could be text, html, or a mix. We concat each element to get a string - // representation of the label, without the input as part of it. + // The label contents could be text, html, or a mix. We concat each element to get a + // string representation of the label, without the input as part of it. that.originalLabel += this.nodeType === 3 ? $( this ).text() : this.outerHTML; } ); |