Skip to content
Permalink
Browse files
Fixed a missing semicolon
  • Loading branch information
jzaefferer committed Nov 13, 2006
1 parent 93c1340 commit 9261e7e
Showing 1 changed file with 2 additions and 2 deletions.
@@ -709,14 +709,14 @@ jQuery.extend({
error: null,
dataType: null,
data: null,
url: null,
url: null
}, s);

// if data available
if ( s.data ) {
// convert data if not already a 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
if( s.type.toLowerCase() == "get" )
// "?" + data or "&" + data (in case there are already params)

0 comments on commit 9261e7e

Please sign in to comment.