X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ftransports%2Fjsonp.js;h=f16b394bac43c39149f48229268bb85199f4ea43;hb=981d1e08eb00f4b5c29ad1f3977a45e30c93ad70;hp=2bdce2390c48486445411606efa25f0dedab6880;hpb=ab3ba4a81252c4357a7aab5f24d765d41d47986e;p=jquery.git diff --git a/src/transports/jsonp.js b/src/transports/jsonp.js index 2bdce23..f16b394 100644 --- a/src/transports/jsonp.js +++ b/src/transports/jsonp.js @@ -2,7 +2,7 @@ var jsc = jQuery.now(), jsre = /\=\?(&|$)/, - rquery = /\?/; + rquery_jsonp = /\?/; // Default jsonp callback name jQuery.ajaxSettings.jsonpCallback = function() { @@ -11,12 +11,14 @@ jQuery.ajaxSettings.jsonpCallback = function() { // Normalize jsonp queries // 1) put callback parameter in url or data -// 2) ensure transportDataType is json +// 2) sneakily ensure transportDataType is json // 3) ensure options jsonp is always provided so that jsonp requests are always // json request with the jsonp option set -jQuery.xhr.prefilter( function(s) { +jQuery.ajax.prefilter("json jsonp", function(s) { - var transportDataType = s.dataTypes[0]; + var transportDataType = s.dataTypes[ 0 ]; + + s.dataTypes[ 0 ] = "json"; if ( s.jsonp || transportDataType === "jsonp" || @@ -29,19 +31,15 @@ jQuery.xhr.prefilter( function(s) { data = s.url == url && typeof(s.data) === "string" ? s.data.replace(jsre, "=" + jsonpCallback + "$1") : s.data; if ( url == s.url && data == s.data ) { - url = url += (rquery.test( url ) ? "&" : "?") + jsonp + "=" + jsonpCallback; + url = url += (rquery_jsonp.test( url ) ? "&" : "?") + jsonp + "=" + jsonpCallback; } s.url = url; s.data = data; - - s.dataTypes[0] = "json"; } -}); - // Bind transport to json dataType -jQuery.xhr.bindTransport("json", function(s) { +}).transport("json", function(s) { if ( s.jsonp ) { @@ -72,18 +70,16 @@ jQuery.xhr.bindTransport("json", function(s) { }, s.complete ]; // Use data converter to retrieve json after script execution - s.dataConverters["script => json"] = function() { + s.dataConverters["script json"] = function() { if ( ! responseContainer ) { - jQuery.error("Callback '" + jsonpCallback + "' was not called"); + jQuery.error( jsonpCallback + " was not called" ); } return responseContainer[ 0 ]; }; // Delegate to script transport return "script"; - } - }); -})(jQuery); +})( jQuery );