Fixed a missing semicolon
This commit is contained in:
parent
93c1340d55
commit
9261e7ee13
|
@ -709,14 +709,14 @@ jQuery.extend({
|
||||||
error: null,
|
error: null,
|
||||||
dataType: null,
|
dataType: null,
|
||||||
data: null,
|
data: null,
|
||||||
url: null,
|
url: null
|
||||||
}, s);
|
}, s);
|
||||||
|
|
||||||
// if data available
|
// if data available
|
||||||
if ( s.data ) {
|
if ( s.data ) {
|
||||||
// convert data if not already a string
|
// convert data if not already a string
|
||||||
if (typeof s.data != 'string')
|
if (typeof s.data != 'string')
|
||||||
s.data = jQuery.param(s.data)
|
s.data = jQuery.param(s.data);
|
||||||
// append data to url for get requests
|
// append data to url for get requests
|
||||||
if( s.type.toLowerCase() == "get" )
|
if( s.type.toLowerCase() == "get" )
|
||||||
// "?" + data or "&" + data (in case there are already params)
|
// "?" + data or "&" + data (in case there are already params)
|
||||||
|
|
Loading…
Reference in a new issue