Reverting commit 39addc87a3 after a report of problems. Fixes #7196.

This commit is contained in:
jeresig 2010-10-14 20:55:40 -04:00
parent 8576570e6e
commit 80a4178af9

View file

@ -239,6 +239,10 @@ jQuery.extend({
var customJsonp = window[ jsonp ];
window[ jsonp ] = function( tmp ) {
data = tmp;
jQuery.handleSuccess( s, xhr, status, data );
jQuery.handleComplete( s, xhr, status, data );
if ( jQuery.isFunction( customJsonp ) ) {
customJsonp( tmp );
@ -254,10 +258,6 @@ jQuery.extend({
if ( head ) {
head.removeChild( script );
}
data = tmp;
jQuery.handleSuccess( s, xhr, status, data );
jQuery.handleComplete( s, xhr, status, data );
};
}