X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fajax.js;h=9195bcc89eb48d44cd0e34edfeccdfdb524d8618;hb=fb48ae8e6cca25fd29ef2b1eb23e9efa7b0eef7c;hp=ff293da6acff9280097a5fcaba2c9e35e87d5032;hpb=b5b3c73db3e4e615e504cd0af08ff6842b104542;p=jquery.git diff --git a/src/ajax.js b/src/ajax.js index ff293da..9195bcc 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 ) {