From 90d9c4632c1f05f32ead98b46796bed9635e40fb Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Mon, 4 Nov 2013 12:58:13 -0500 Subject: [PATCH] No ticket: Update style per gh-1418 comments --- src/ajax/xhr.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index f93b35fde..63b86d8ed 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -77,11 +77,9 @@ if ( xhrSupported ) { } // Need an extra try/catch for cross-domain requests in Firefox 3 - try { - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - } catch( err ) {} + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } // Do send the request // This may raise an exception which is actually @@ -114,8 +112,8 @@ if ( xhrSupported ) { status = xhr.status; // Support: IE<10 - // #11426: When requesting binary data, IE9 will throw an exception - // on any attempt to access responseText + // Accessing binary-data responseText throws an exception + // (#11426) if ( typeof xhr.responseText === "string" ) { responses.text = xhr.responseText; } @@ -186,7 +184,7 @@ function createStandardXHR() { function createActiveXHR() { try { - return new window.ActiveXObject("Microsoft.XMLHTTP"); + return new window.ActiveXObject( "Microsoft.XMLHTTP" ); } catch( e ) {} } -- 2.39.5