From: Oleg Date: Fri, 13 Sep 2013 15:29:48 +0000 (+0400) Subject: Correct code style in comment line X-Git-Tag: 2.1.0-beta1~7 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=80538b04fd4ce8bd531d3d1fb60236a315c82d80;p=jquery.git Correct code style in comment line --- diff --git a/src/serialize.js b/src/serialize.js index fc1b4dfdf..0d6dfec6d 100644 --- a/src/serialize.js +++ b/src/serialize.js @@ -88,7 +88,7 @@ jQuery.fn.extend({ .filter(function() { var type = this.type; - // Use .is( ":disabled" ) so that fieldset[ disabled ] works + // Use .is( ":disabled" ) so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) );