Fixed some line ending issues.
This commit is contained in:
parent
4e504d86b9
commit
b4bf244c0e
|
@ -74,13 +74,16 @@ jQuery.fn.extend({
|
||||||
(this.checked || /select|textarea/i.test(this.nodeName) ||
|
(this.checked || /select|textarea/i.test(this.nodeName) ||
|
||||||
/text|hidden|password/i.test(this.type));
|
/text|hidden|password/i.test(this.type));
|
||||||
})
|
})
|
||||||
.map(function(i, elem){
var val = jQuery(this).val();
|
.map(function(i, elem){
|
||||||
|
var val = jQuery(this).val();
|
||||||
return val == null ? null :
|
return val == null ? null :
|
||||||
val.constructor == Array ?
|
val.constructor == Array ?
|
||||||
jQuery.map( val, function(i, val){
return {name: elem.name, value: val};
|
jQuery.map( val, function(i, val){
|
||||||
|
return {name: elem.name, value: val};
|
||||||
}) :
|
}) :
|
||||||
{name: elem.name, value: val};
|
{name: elem.name, value: val};
|
||||||
}).get();
}
|
}).get();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Attach a bunch of functions for handling common AJAX events
|
// Attach a bunch of functions for handling common AJAX events
|
||||||
|
|
Loading…
Reference in a new issue