diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2013-11-04 12:51:57 -0500 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-11-04 12:51:57 -0500 |
commit | 19c1b6109a73bc7d0d5bd84587b5c5a44d3e2a74 (patch) | |
tree | eae355883b4347bc392f126cca52ee680ffa472c /src | |
parent | d5b7139abce9dd207773531d6dcb3493c6ac0c7c (diff) | |
download | jquery-19c1b6109a73bc7d0d5bd84587b5c5a44d3e2a74.tar.gz jquery-19c1b6109a73bc7d0d5bd84587b5c5a44d3e2a74.zip |
No ticket: Update support comment to match convention
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax/xhr.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index c240f3b31..a99fe6930 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -93,8 +93,8 @@ jQuery.ajaxTransport(function( options ) { xhrSuccessStatus[ xhr.status ] || xhr.status, xhr.statusText, // Support: IE9 - // #11426: When requesting binary data, IE9 will throw an exception - // on any attempt to access responseText + // Accessing binary-data responseText throws an exception + // (#11426) typeof xhr.responseText === "string" ? { text: xhr.responseText } : undefined, |