aboutsummaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/jquery/src/ajax
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-04-23 00:37:58 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2024-04-23 00:37:58 -0400
commit9b0e86a8e74768c4fe848fb5ce8d754292db4e3e (patch)
treecfd424be8ecb68357e6e572033f08bc534bf724f /npm_assets/node_modules/jquery/src/ajax
parent393aa58f2c5afd51f92fd9bd4b6dfd0dc90cea41 (diff)
New upstream version 8.3.0.upstream/8.3.0upstream
Diffstat (limited to 'npm_assets/node_modules/jquery/src/ajax')
-rw-r--r--npm_assets/node_modules/jquery/src/ajax/xhr.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/npm_assets/node_modules/jquery/src/ajax/xhr.js b/npm_assets/node_modules/jquery/src/ajax/xhr.js
index 4a31171..0c4418b 100644
--- a/npm_assets/node_modules/jquery/src/ajax/xhr.js
+++ b/npm_assets/node_modules/jquery/src/ajax/xhr.js
@@ -18,7 +18,7 @@ var xhrSuccessStatus = {
0: 200,
// Support: IE <=9 only
- // #1450: sometimes IE returns 1223 when it should be 204
+ // trac-1450: sometimes IE returns 1223 when it should be 204
1223: 204
},
xhrSupported = jQuery.ajaxSettings.xhr();
@@ -90,7 +90,7 @@ jQuery.ajaxTransport( function( options ) {
} else {
complete(
- // File: protocol always yields status 0; see #8605, #14207
+ // File: protocol always yields status 0; see trac-8605, trac-14207
xhr.status,
xhr.statusText
);
@@ -151,7 +151,7 @@ jQuery.ajaxTransport( function( options ) {
xhr.send( options.hasContent && options.data || null );
} catch ( e ) {
- // #14683: Only rethrow if this hasn't been notified as an error yet
+ // trac-14683: Only rethrow if this hasn't been notified as an error yet
if ( callback ) {
throw e;
}