summaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/jquery/src/serialize.js
diff options
context:
space:
mode:
Diffstat (limited to 'npm_assets/node_modules/jquery/src/serialize.js')
-rw-r--r--npm_assets/node_modules/jquery/src/serialize.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/npm_assets/node_modules/jquery/src/serialize.js b/npm_assets/node_modules/jquery/src/serialize.js
index cd4e99f..11a8624 100644
--- a/npm_assets/node_modules/jquery/src/serialize.js
+++ b/npm_assets/node_modules/jquery/src/serialize.js
@@ -105,16 +105,14 @@ jQuery.fn.extend( {
// Can add propHook for "elements" to filter or add form elements
var elements = jQuery.prop( this, "elements" );
return elements ? jQuery.makeArray( elements ) : this;
- } )
- .filter( function() {
+ } ).filter( function() {
var type = this.type;
// 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 ) );
- } )
- .map( function( _i, elem ) {
+ } ).map( function( _i, elem ) {
var val = jQuery( this ).val();
if ( val == null ) {