Permalink
Browse files
Ajax: Remove unnecessary use of jQuery.trim
The subsequent .match already ignores leading/trailing space.
Ref gh-3003
Closes gh-3095
- Loading branch information...
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/ajax.js
|
|
@@ -531,7 +531,7 @@ jQuery.extend( { |
|
|
s.type = options.method || options.type || s.method || s.type;
|
|
|
|
|
|
// Extract dataTypes list
|
|
|
- s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
|
|
|
+ s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
|
|
|
|
|
|
// A cross-domain request is in order when the origin doesn't match the current origin.
|
|
|
if ( s.crossDomain == null ) {
|
|
|
|
0 comments on commit
0bd98b1