mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Removes now unnecessary regexp and companion function. Fixes some spacing issues. Shortens field names.
This commit is contained in:
parent
4d3cb7d7ee
commit
a519129e99
18
src/ajax.js
18
src/ajax.js
@ -15,10 +15,6 @@ var r20 = /%20/g,
|
||||
rselectTextarea = /^(?:select|textarea)/i,
|
||||
rspacesAjax = /\s+/,
|
||||
rts = /([?&])_=[^&]*/,
|
||||
rucHeaders = /(^|\-)([a-z])/g,
|
||||
rucHeadersFunc = function( _, $1, $2 ) {
|
||||
return $1 + $2.toUpperCase();
|
||||
},
|
||||
rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,
|
||||
|
||||
// Keep a copy of the old load method
|
||||
@ -416,7 +412,7 @@ jQuery.extend({
|
||||
// Caches the header
|
||||
setRequestHeader: function( name, value ) {
|
||||
if ( !state ) {
|
||||
requestHeaders[ name.toUpperCase().replace( rucHeaders, rucHeadersFunc ) ] = { name: name, value: value };
|
||||
requestHeaders[ name.toLowerCase() ] = { n: name, v: value };
|
||||
}
|
||||
return this;
|
||||
},
|
||||
@ -679,12 +675,12 @@ jQuery.extend({
|
||||
}
|
||||
|
||||
// Set the Accepts header for the server, depending on the dataType
|
||||
jqXHR.setRequestHeader(
|
||||
"Accept",
|
||||
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
|
||||
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
|
||||
s.accepts[ "*" ]
|
||||
);
|
||||
jqXHR.setRequestHeader(
|
||||
"Accept",
|
||||
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
|
||||
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
|
||||
s.accepts[ "*" ]
|
||||
);
|
||||
|
||||
// Check for headers option
|
||||
for ( i in s.headers ) {
|
||||
|
@ -104,7 +104,7 @@ if ( jQuery.support.ajax ) {
|
||||
// Need an extra try/catch for cross domain requests in Firefox 3
|
||||
try {
|
||||
for ( i in headers ) {
|
||||
xhr.setRequestHeader( headers[ i ].name, headers[ i ].value );
|
||||
xhr.setRequestHeader( headers[ i ].n, headers[ i ].v );
|
||||
}
|
||||
} catch( _ ) {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user