Removed bind/unbind from xhr emulation: success/error/complete are deferred not events so these methods didn't really make sense in the first place.

This commit is contained in:
jaubourg 2010-12-11 02:04:13 +01:00
parent 8ab5e1e45c
commit 9d3a4a2b40

View file

@ -597,23 +597,6 @@ jQuery.xhr = function( _native ) {
reset(1);
// Install callbacks related methods
jQuery.each(["bind","unbind"], function(_, name) {
xhr[name] = function(type) {
var functors = sliceFunc.call(arguments,1),
list;
jQuery.each(type.split(/\s+/g), function() {
list = callbacksLists[this];
if ( list ) {
list[name].apply(list, functors );
}
});
return this;
};
});
jQuery.each(callbacksLists, function(name) {
var list;
xhr[name] = function() {