Applied patch provided by Taku Sano fixing the compression errors.
authorJohn Resig <jeresig@gmail.com>
Sun, 13 Aug 2006 01:29:27 +0000 (01:29 +0000)
committerJohn Resig <jeresig@gmail.com>
Sun, 13 Aug 2006 01:29:27 +0000 (01:29 +0000)
ajax/ajax.js
event/event.js

index 6f289bb..be9c320 100644 (file)
@@ -210,16 +210,17 @@ jQuery.extend({
                
                // If an array was passed in, assume that it is an array
                // of form elements
-               if ( a.constructor == Array )
+               if ( a.constructor == Array ) {
                        // Serialize the form elements
                        for ( var i = 0; i < a.length; i++ )
                                s.push( a[i].name + "=" + encodeURIComponent( a[i].value ) );
                        
                // Otherwise, assume that it's an object of key/value pairs
-               else
+               } else {
                        // Serialize the key/values
                        for ( var j in a )
                                s.push( j + "=" + encodeURIComponent( a[j] ) );
+               }
                
                // Return the resulting serialization
                return s.join("&");
index 43d5d05..9432c08 100644 (file)
@@ -1616,7 +1616,7 @@ new function(){
                        });
                };
                        
-       }
+       };
        
        // If Mozilla is used
        if ( jQuery.browser.mozilla || jQuery.browser.opera ) {
@@ -1657,9 +1657,9 @@ new function(){
                                jQuery.ready();
                        }
                }, 10);
+       } else {
+               // A fallback to window.onload, that will always work
+               jQuery.event.add( window, "load", jQuery.ready );
        }
        
-       // A fallback to window.onload, that will always work
-       jQuery.event.add( window, "load", jQuery.ready );
-       
 }