]> source.dussan.org Git - jquery.git/commitdiff
Fixed function closures so that Makefile can do its magic.
authorjaubourg <aubourg.julian@gmail.com>
Fri, 10 Dec 2010 02:14:03 +0000 (03:14 +0100)
committerjaubourg <aubourg.julian@gmail.com>
Fri, 10 Dec 2010 02:14:03 +0000 (03:14 +0100)
src/transports/jsonp.js
src/transports/script.js
src/transports/xhr.js
src/xhr.js

index 2bdce2390c48486445411606efa25f0dedab6880..228a4d3db1e36bebdc53f7ee3c421dfec67a1ffc 100644 (file)
@@ -86,4 +86,4 @@ jQuery.xhr.bindTransport("json", function(s) {
 
 });
 
-})(jQuery);
+})( jQuery );
index 5470deccedcbce80453d1599d9dfe6045c6d3b74..fe3873557143b23702be098580d38fc67bf7c36f 100644 (file)
@@ -80,4 +80,4 @@ jQuery.xhr.bindTransport("script", function(s) {
        }
 });
 
-})(jQuery);
+})( jQuery );
index 129058ee6c424ea69d1cc9b87554781334bdfbf1..783ee460491895221360fa083e296d7f87f1c53c 100644 (file)
@@ -188,4 +188,4 @@ jQuery(window).bind( "unload" , function() {
        
 });
 
-})(jQuery);
+})( jQuery );
index 401619c11c2e06d8811eecf869967033985f8593..649a8cd47399b84d75df67474e06b711978d9a63 100644 (file)
@@ -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 );