Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Edited comments and minor adjustments. Fixes #13553. Closes gh-1195.
- Loading branch information
Showing
11 changed files
with
29 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -181,7 +181,7 @@ function uploadToCDN( next ) { | ||
}); | ||
}); | ||
cmds.push( next ); | ||
|
||
steps.apply( this, cmds ); | ||
} | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -8,7 +8,7 @@ | ||
<script src="../dist/jquery.js"></script> | ||
<script> | ||
jQuery(function(){ | ||
|
||
}); | ||
|
||
var events = [], num = 400, exec = false; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -2,7 +2,7 @@ var | ||
// Document location | ||
ajaxLocParts, | ||
ajaxLocation, | ||
|
||
ajax_nonce = jQuery.now(), | ||
|
||
ajax_rquery = /\?/, | ||
@@ -140,7 +140,7 @@ jQuery.fn.load = function( url, params, callback ) { | ||
off = url.indexOf(" "); | ||
|
||
if ( off >= 0 ) { | ||
selector = url.slice( off, url.length ); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
staabm
Contributor
|
||
selector = url.slice( off ); | ||
url = url.slice( 0, off ); | ||
} | ||
|
||
@@ -427,10 +427,11 @@ jQuery.extend({ | ||
jqXHR.error = jqXHR.fail; | ||
|
||
// Remove hash character (#7531: and string promotion) | ||
// Add protocol if not provided (#5866: IE7 issue with protocol-less urls) | ||
// Add protocol if not provided (prefilters might expect it) | ||
// Handle falsy url in the settings object (#10093: consistency with old signature) | ||
// We also use the url parameter if available | ||
s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); | ||
s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ) | ||
.replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); | ||
|
||
// Alias method option to type as per ticket #12004 | ||
s.type = options.method || options.type || s.method || s.type; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
just curious: all changes were whitespace related except this one... was it changed intentionally?