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:
b721a2f
)
The extra & was getting gobbled, oops.
author
John Resig
<jeresig@gmail.com>
Mon, 17 Dec 2007 00:48:12 +0000
(
00:48
+0000)
committer
John Resig
<jeresig@gmail.com>
Mon, 17 Dec 2007 00:48:12 +0000
(
00:48
+0000)
src/ajax.js
patch
|
blob
|
history
diff --git
a/src/ajax.js
b/src/ajax.js
index
bf3c238
..
b193a62
100644
(file)
--- a/
src/ajax.js
+++ b/
src/ajax.js
@@
-177,8
+177,8
@@
jQuery.extend({
// Replace the =? sequence both in the query string and the data
if ( s.data )
- s.data = (s.data + "").replace(jsre, "=" + jsonp);
- s.url = s.url.replace(jsre, "=" + jsonp);
+ s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
+ s.url = s.url.replace(jsre, "=" + jsonp + "$1");
// We need to make sure
// that a JSONP style response is executed properly