diff options
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, |