Handle issue with two concurrent JSONP requests that use the same callback name.
This commit is contained in:
parent
8fb4d9af74
commit
39addc87a3
|
@ -239,10 +239,6 @@ jQuery.extend({
|
||||||
var customJsonp = window[ jsonp ];
|
var customJsonp = window[ jsonp ];
|
||||||
|
|
||||||
window[ jsonp ] = function( tmp ) {
|
window[ jsonp ] = function( tmp ) {
|
||||||
data = tmp;
|
|
||||||
jQuery.handleSuccess( s, xhr, status, data );
|
|
||||||
jQuery.handleComplete( s, xhr, status, data );
|
|
||||||
|
|
||||||
if ( jQuery.isFunction( customJsonp ) ) {
|
if ( jQuery.isFunction( customJsonp ) ) {
|
||||||
customJsonp( tmp );
|
customJsonp( tmp );
|
||||||
|
|
||||||
|
@ -258,6 +254,10 @@ jQuery.extend({
|
||||||
if ( head ) {
|
if ( head ) {
|
||||||
head.removeChild( script );
|
head.removeChild( script );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data = tmp;
|
||||||
|
jQuery.ajax.handleSuccess( s, xhr, status, data );
|
||||||
|
jQuery.ajax.handleComplete( s, xhr, status, data );
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue