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

ui/widgets/checkboxradio.js

index 300cae8cee9a2875154c2310c89ef222fbff69f4..0052b19502dd5eaa35b383de113aa5d17a71651f 100644 (file)
@@ -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;
                } );