From adbd694a3e3d14678775695b17bd1fb7c95efacc Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Wed, 30 Mar 2016 23:42:53 -0400 Subject: [PATCH] Checkboxradio: Fix line length issues Ref gh-1690 --- ui/widgets/checkboxradio.js | 4 ++-- 1 file 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; } ); -- 2.39.5