Standardize on using double-quotes for string literals.
This commit is contained in:
parent
61e37d4149
commit
3776cbe314
8 changed files with 31 additions and 30 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue