git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1023cf1
)
jquery ajax: closes #3249. Slight modification on serializeArray, shorter and faster...
author
Ariel Flesler
<aflesler@gmail.com>
Wed, 13 Aug 2008 01:44:36 +0000
(
01:44
+0000)
committer
Ariel Flesler
<aflesler@gmail.com>
Wed, 13 Aug 2008 01:44:36 +0000
(
01:44
+0000)
src/ajax.js
patch
|
blob
|
history
diff --git
a/src/ajax.js
b/src/ajax.js
index
bda79b5
..
e454533
100644
(file)
--- a/
src/ajax.js
+++ b/
src/ajax.js
@@
-66,8
+66,7
@@
jQuery.fn.extend({
},
serializeArray: function() {
return this.map(function(){
- return jQuery.nodeName(this, "form") ?
- jQuery.makeArray(this.elements) : this;
+ return this.elements ? jQuery.makeArray(this.elements) : this;
})
.filter(function(){
return this.name && !this.disabled &&