DRY out $.get and $.post. Fixes #7847. Thanks to cowboy for the patch.

This commit is contained in:
Colin Snover 2010-12-26 20:56:20 -06:00
commit 4443371dba

View file

@ -113,9 +113,8 @@ jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".sp
}; };
}); });
jQuery.extend({ jQuery.each( [ "get", "post" ], function( i, method ) {
jQuery[ method ] = function( url, data, callback, type ) {
get: function( url, data, callback, type ) {
// shift arguments if data argument was omited // shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) { if ( jQuery.isFunction( data ) ) {
type = type || callback; type = type || callback;
@ -124,13 +123,16 @@ jQuery.extend({
} }
return jQuery.ajax({ return jQuery.ajax({
type: "GET", type: method,
url: url, url: url,
data: data, data: data,
success: callback, success: callback,
dataType: type dataType: type
}); });
}, };
});
jQuery.extend({
getScript: function( url, callback ) { getScript: function( url, callback ) {
return jQuery.get(url, null, callback, "script"); return jQuery.get(url, null, callback, "script");
@ -140,23 +142,6 @@ jQuery.extend({
return jQuery.get(url, data, callback, "json"); return jQuery.get(url, data, callback, "json");
}, },
post: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = {};
}
return jQuery.ajax({
type: "POST",
url: url,
data: data,
success: callback,
dataType: type
});
},
ajaxSetup: function( settings ) { ajaxSetup: function( settings ) {
jQuery.extend( jQuery.ajaxSettings, settings ); jQuery.extend( jQuery.ajaxSettings, settings );
}, },