diff options
author | John Resig <jeresig@gmail.com> | 2010-11-09 11:09:07 -0500 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2010-11-09 11:09:07 -0500 |
commit | fb48ae8e6cca25fd29ef2b1eb23e9efa7b0eef7c (patch) | |
tree | 150abf047642cb0f1e8af19f1c3d0237fe07f9ff /src/ajax.js | |
parent | b5b3c73db3e4e615e504cd0af08ff6842b104542 (diff) | |
download | jquery-fb48ae8e6cca25fd29ef2b1eb23e9efa7b0eef7c.tar.gz jquery-fb48ae8e6cca25fd29ef2b1eb23e9efa7b0eef7c.zip |
Make sure that when multiple variables are being declared that assignments are each done on their own line.
Diffstat (limited to 'src/ajax.js')
-rw-r--r-- | src/ajax.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ajax.js b/src/ajax.js index ff293da6a..9195bcc89 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -506,11 +506,12 @@ jQuery.extend({ // Serialize an array of form elements or a set of // key/values into a query string param: function( a, traditional ) { - var s = [], add = function( key, value ) { - // If value is a function, invoke it and return its value - value = jQuery.isFunction(value) ? value() : value; - s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value); - }; + var s = [], + add = function( key, value ) { + // If value is a function, invoke it and return its value + value = jQuery.isFunction(value) ? value() : value; + s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value); + }; // Set traditional to true for jQuery <= 1.3.2 behavior. if ( traditional === undefined ) { |