Skip to content

Commit

Permalink
jquery: removing unnecessary trailing and leading spaces & tabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
flesler committed May 13, 2008
1 parent 20a7bff commit 3f5ff30
Show file tree
Hide file tree
Showing 7 changed files with 242 additions and 242 deletions.
34 changes: 17 additions & 17 deletions src/ajax.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jQuery.fn.extend({
// Keep a copy of the old load
_load: jQuery.fn.load,

load: function( url, params, callback ) {
if ( typeof url != 'string' )
return this._load( url );
Expand Down Expand Up @@ -71,8 +71,8 @@ jQuery.fn.extend({
jQuery.makeArray(this.elements) : this;
})
.filter(function(){
return this.name && !this.disabled &&
(this.checked || /select|textarea/i.test(this.nodeName) ||
return this.name && !this.disabled &&
(this.checked || /select|textarea/i.test(this.nodeName) ||
/text|hidden|password/i.test(this.type));
})
.map(function(i, elem){
Expand Down Expand Up @@ -103,7 +103,7 @@ jQuery.extend({
callback = data;
data = null;
}

return jQuery.ajax({
type: "GET",
url: url,
Expand Down Expand Up @@ -159,7 +159,7 @@ jQuery.extend({
_default: "*/*"
}
},

// Last-Modified header cache for next request
lastModified: {},

Expand Down Expand Up @@ -248,7 +248,7 @@ jQuery.extend({

// Attach handlers for all browsers
script.onload = script.onreadystatechange = function(){
if ( !done && (!this.readyState ||
if ( !done && (!this.readyState ||
this.readyState == "loaded" || this.readyState == "complete") ) {
done = true;
success();
Expand Down Expand Up @@ -301,7 +301,7 @@ jQuery.extend({
xml.abort();
return false;
}

if ( s.global )
jQuery.event.trigger("ajaxSend", [xml, s]);

Expand All @@ -310,13 +310,13 @@ jQuery.extend({
// The transfer is complete and the data is available, or the request timed out
if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
requestDone = true;

// clear poll interval
if (ival) {
clearInterval(ival);
ival = null;
}

status = isTimeout == "timeout" && "timeout" ||
!jQuery.httpSuccess( xml ) && "error" ||
s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
Expand All @@ -339,13 +339,13 @@ jQuery.extend({
try {
modRes = xml.getResponseHeader("Last-Modified");
} catch(e) {} // swallow exception thrown by FF if header is not available

if ( s.ifModified && modRes )
jQuery.lastModified[s.url] = modRes;

// JSONP handles its own success callback
if ( !jsonp )
success();
success();
} else
jQuery.handleError(s, xml, status);

Expand All @@ -357,10 +357,10 @@ jQuery.extend({
xml = null;
}
};

if ( s.async ) {
// don't attach the handler to the request, just poll it instead
var ival = setInterval(onreadystatechange, 13);
var ival = setInterval(onreadystatechange, 13);

// Timeout checker
if ( s.timeout > 0 )
Expand All @@ -369,20 +369,20 @@ jQuery.extend({
if ( xml ) {
// Cancel the request
xml.abort();

if( !requestDone )
onreadystatechange( "timeout" );
}
}, s.timeout);
}

// Send the data
try {
xml.send(s.data);
} catch(e) {
jQuery.handleError(s, xml, null, e);
}

// firefox 1.5 doesn't fire statechange for sync requests
if ( !s.async )
onreadystatechange();
Expand Down Expand Up @@ -410,7 +410,7 @@ jQuery.extend({
if ( s.global && ! --jQuery.active )
jQuery.event.trigger( "ajaxStop" );
}

// return XMLHttpRequest to allow aborting the request etc.
return xml;
},
Expand Down
Loading

0 comments on commit 3f5ff30

Please sign in to comment.