diff options
author | jaubourg <j@ubourg.net> | 2011-01-26 00:55:39 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-01-26 00:55:39 +0100 |
commit | 325dcdc2ab05173f809b9d83af59918b3695cc23 (patch) | |
tree | 861e2bfe79ecde358dadfa14873c8be321ece286 /src | |
parent | 5ca8f0617f5c94495380ff783452a52eab706d39 (diff) | |
download | jquery-325dcdc2ab05173f809b9d83af59918b3695cc23.tar.gz jquery-325dcdc2ab05173f809b9d83af59918b3695cc23.zip |
Fixes #8054 by reverting feature enhancement 5812 (4920). Regexps no longer searches for %3F in url or data to find jsonp callback placeholders.
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax/jsonp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/jsonp.js b/src/ajax/jsonp.js index f5742d998..16a4c2fd2 100644 --- a/src/ajax/jsonp.js +++ b/src/ajax/jsonp.js @@ -1,7 +1,7 @@ (function( jQuery ) { var jsc = jQuery.now(), - jsre = /(\=)(?:\?|%3F)(&|$)|()(?:\?\?|%3F%3F)()/i; + jsre = /(\=)\?(&|$)|()\?\?()/i; // Default jsonp settings jQuery.ajaxSetup({ |