diff options
author | jeresig <jeresig@gmail.com> | 2009-12-21 20:13:16 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2009-12-21 20:13:16 -0500 |
commit | 3776cbe314ac6f5081e998c3d5ac84d3fbc51872 (patch) | |
tree | fdb204009ea45232f98b295b5d82f0a85043b447 /src/ajax.js | |
parent | 61e37d41490aed319a176c6ca7feb95e5505059c (diff) | |
download | jquery-3776cbe314ac6f5081e998c3d5ac84d3fbc51872.tar.gz jquery-3776cbe314ac6f5081e998c3d5ac84d3fbc51872.zip |
Standardize on using double-quotes for string literals.
Diffstat (limited to 'src/ajax.js')
-rw-r--r-- | src/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index 0d1dd84cc..bd87252a7 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -604,7 +604,7 @@ jQuery.extend({ function add( 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); + s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value); } // If an array was passed in, assume that it is an array of form elements. |