diff options
author | John Resig <jeresig@gmail.com> | 2006-08-13 01:29:27 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-13 01:29:27 +0000 |
commit | 8aca450f435191c475cdb04ce7684da5b0e23775 (patch) | |
tree | cd065e240d066efd1cabe80155eb018e62037aa5 | |
parent | 6a47e28340e3cd9e8be73872767e6dbebd1a28f5 (diff) | |
download | jquery-8aca450f435191c475cdb04ce7684da5b0e23775.tar.gz jquery-8aca450f435191c475cdb04ce7684da5b0e23775.zip |
Applied patch provided by Taku Sano fixing the compression errors.
-rw-r--r-- | ajax/ajax.js | 5 | ||||
-rw-r--r-- | event/event.js | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/ajax/ajax.js b/ajax/ajax.js index 6f289bbd2..be9c32006 100644 --- a/ajax/ajax.js +++ b/ajax/ajax.js @@ -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("&"); diff --git a/event/event.js b/event/event.js index 43d5d05e4..9432c08c8 100644 --- a/event/event.js +++ b/event/event.js @@ -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 ); - } |