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 2bdce23..228a4d3 100644 (file)
@@ -86,4 +86,4 @@ jQuery.xhr.bindTransport("json", function(s) {
 
 });
 
-})(jQuery);
+})( jQuery );
index 5470dec..fe38735 100644 (file)
@@ -80,4 +80,4 @@ jQuery.xhr.bindTransport("script", function(s) {
        }
 });
 
-})(jQuery);
+})( jQuery );
index 129058e..783ee46 100644 (file)
@@ -188,4 +188,4 @@ jQuery(window).bind( "unload" , function() {
        
 });
 
-})(jQuery);
+})( jQuery );
index 401619c..649a8cd 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 );