mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 17:08:32 -05:00
Fixed function closures so that Makefile can do its magic.
This commit is contained in:
@@ -86,4 +86,4 @@ jQuery.xhr.bindTransport("json", function(s) {
|
||||
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
})( jQuery );
|
||||
|
||||
@@ -80,4 +80,4 @@ jQuery.xhr.bindTransport("script", function(s) {
|
||||
}
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
})( jQuery );
|
||||
|
||||
@@ -188,4 +188,4 @@ jQuery(window).bind( "unload" , function() {
|
||||
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
})( jQuery );
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
(function( jQuery , undefined ) {
|
||||
(function( jQuery ) {
|
||||
|
||||
var rquery = /\?/,
|
||||
rhash = /#.*$/,
|
||||
@@ -9,7 +9,9 @@ var rquery = /\?/,
|
||||
|
||||
slice = Array.prototype.slice,
|
||||
|
||||
isFunction = jQuery.isFunction;
|
||||
isFunction = jQuery.isFunction,
|
||||
|
||||
undefined;
|
||||
|
||||
// Creates a jQuery xhr object
|
||||
jQuery.xhr = function( _native ) {
|
||||
@@ -923,4 +925,4 @@ function determineDataType( s , ct , text , xml ) {
|
||||
return response;
|
||||
}
|
||||
|
||||
})(jQuery);
|
||||
})( jQuery );
|
||||
|
||||
Reference in New Issue
Block a user