Backing out fix for #5803 from 3b50eaca2c
.
This commit is contained in:
parent
9b97599fa4
commit
de58db0cdf
|
@ -208,12 +208,6 @@ jQuery.extend({
|
|||
s.data = jQuery.param( s.data, s.traditional );
|
||||
}
|
||||
|
||||
// If the jsonpCallback has been set, we can assume that dataType is jsonp
|
||||
// Ticket #5803
|
||||
if ( s.jsonpCallback ) {
|
||||
s.dataType = "jsonp";
|
||||
}
|
||||
|
||||
// Handle JSONP Parameter Callbacks
|
||||
if ( s.dataType === "jsonp" ) {
|
||||
if ( type === "GET" ) {
|
||||
|
|
|
@ -825,21 +825,6 @@ test("jQuery.ajax() - JSONP, Local", function() {
|
|||
plus();
|
||||
}
|
||||
});
|
||||
|
||||
// Supports Ticket #5803
|
||||
jQuery.ajax({
|
||||
url: "data/jsonp.php",
|
||||
jsonpCallback: "jsonpResults",
|
||||
success: function(data){
|
||||
ok( data.data, "JSON results returned without dataType:jsonp when jsonpCallback is defined" );
|
||||
plus();
|
||||
},
|
||||
error: function(data){
|
||||
ok( false, "Ajax error JSON (GET, custom callback name)" );
|
||||
plus();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
test("JSONP - Custom JSONP Callback", function() {
|
||||
|
|
Loading…
Reference in a new issue