@@ -18,7 +18,7 @@ jQuery.ajaxSetup( {
18
18
} ) ;
19
19
20
20
// Detect, normalize options and install callbacks for jsonp requests
21
- jQuery . ajaxPrefilter ( "json jsonp" , function ( s , originalSettings , jqXHR ) {
21
+ jQuery . ajaxPrefilter ( "jsonp" , function ( s , originalSettings , jqXHR ) {
22
22
23
23
var callbackName , overwritten , responseContainer ,
24
24
jsonProp = s . jsonp !== false && ( rjsonp . test ( s . url ) ?
@@ -29,69 +29,65 @@ jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
29
29
rjsonp . test ( s . data ) && "data"
30
30
) ;
31
31
32
- // Handle iff the expected data type is "jsonp" or we have a parameter to set
33
- if ( jsonProp || s . dataTypes [ 0 ] === "jsonp" ) {
32
+ // Get callback name, remembering preexisting value associated with it
33
+ callbackName = s . jsonpCallback = typeof s . jsonpCallback === "function" ?
34
+ s . jsonpCallback ( ) :
35
+ s . jsonpCallback ;
34
36
35
- // Get callback name, remembering preexisting value associated with it
36
- callbackName = s . jsonpCallback = typeof s . jsonpCallback === "function" ?
37
- s . jsonpCallback ( ) :
38
- s . jsonpCallback ;
37
+ // Insert callback into url or form data
38
+ if ( jsonProp ) {
39
+ s [ jsonProp ] = s [ jsonProp ] . replace ( rjsonp , "$1" + callbackName ) ;
40
+ } else if ( s . jsonp !== false ) {
41
+ s . url += ( rquery . test ( s . url ) ? "&" : "?" ) + s . jsonp + "=" + callbackName ;
42
+ }
39
43
40
- // Insert callback into url or form data
41
- if ( jsonProp ) {
42
- s [ jsonProp ] = s [ jsonProp ] . replace ( rjsonp , "$1" + callbackName ) ;
43
- } else if ( s . jsonp !== false ) {
44
- s . url += ( rquery . test ( s . url ) ? "&" : "?" ) + s . jsonp + "=" + callbackName ;
44
+ // Use data converter to retrieve json after script execution
45
+ s . converters [ "script json" ] = function ( ) {
46
+ if ( ! responseContainer ) {
47
+ jQuery . error ( callbackName + " was not called" ) ;
45
48
}
49
+ return responseContainer [ 0 ] ;
50
+ } ;
46
51
47
- // Use data converter to retrieve json after script execution
48
- s . converters [ "script json" ] = function ( ) {
49
- if ( ! responseContainer ) {
50
- jQuery . error ( callbackName + " was not called" ) ;
51
- }
52
- return responseContainer [ 0 ] ;
53
- } ;
54
-
55
- // Force json dataType
56
- s . dataTypes [ 0 ] = "json" ;
52
+ // Force json dataType
53
+ s . dataTypes [ 0 ] = "json" ;
57
54
58
- // Install callback
59
- overwritten = window [ callbackName ] ;
60
- window [ callbackName ] = function ( ) {
61
- responseContainer = arguments ;
62
- } ;
55
+ // Install callback
56
+ overwritten = window [ callbackName ] ;
57
+ window [ callbackName ] = function ( ) {
58
+ responseContainer = arguments ;
59
+ } ;
63
60
64
- // Clean-up function (fires after converters)
65
- jqXHR . always ( function ( ) {
61
+ // Clean-up function (fires after converters)
62
+ jqXHR . always ( function ( ) {
66
63
67
- // If previous value didn't exist - remove it
68
- if ( overwritten === undefined ) {
69
- jQuery ( window ) . removeProp ( callbackName ) ;
64
+ // If previous value didn't exist - remove it
65
+ if ( overwritten === undefined ) {
66
+ jQuery ( window ) . removeProp ( callbackName ) ;
70
67
71
- // Otherwise restore preexisting value
72
- } else {
73
- window [ callbackName ] = overwritten ;
74
- }
68
+ // Otherwise restore preexisting value
69
+ } else {
70
+ window [ callbackName ] = overwritten ;
71
+ }
75
72
76
- // Save back as free
77
- if ( s [ callbackName ] ) {
73
+ // Save back as free
74
+ if ( s [ callbackName ] ) {
78
75
79
- // Make sure that re-using the options doesn't screw things around
80
- s . jsonpCallback = originalSettings . jsonpCallback ;
76
+ // Make sure that re-using the options doesn't screw things around
77
+ s . jsonpCallback = originalSettings . jsonpCallback ;
81
78
82
- // Save the callback name for future use
83
- oldCallbacks . push ( callbackName ) ;
84
- }
79
+ // Save the callback name for future use
80
+ oldCallbacks . push ( callbackName ) ;
81
+ }
85
82
86
- // Call if it was a function and we have a response
87
- if ( responseContainer && typeof overwritten === "function" ) {
88
- overwritten ( responseContainer [ 0 ] ) ;
89
- }
83
+ // Call if it was a function and we have a response
84
+ if ( responseContainer && typeof overwritten === "function" ) {
85
+ overwritten ( responseContainer [ 0 ] ) ;
86
+ }
90
87
91
- responseContainer = overwritten = undefined ;
92
- } ) ;
88
+ responseContainer = overwritten = undefined ;
89
+ } ) ;
93
90
94
- // Delegate to script
95
- return "script" ;
96
- }
91
+ // Delegate to script
92
+ return "script" ;
97
93
} ) ;
0 commit comments