From c3772df011889cc0b9a7a4b3c173b0c58be74e6a Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Tue, 21 May 2013 10:39:10 -0700 Subject: [PATCH] Now trying standard path first in createAjaxRequest As suggested by @cskwg in #98 --- src/openseadragon.js | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index a4ffe883..ed43ff77 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -1265,11 +1265,12 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ createAjaxRequest: function(){ var request; - if ( window.ActiveXObject ) { - //TODO: very bad...Why check every time using try/catch when - // we could determine once at startup which activeX object - // was supported. This will have significant impact on - // performance for IE Browsers DONE + if ( window.XMLHttpRequest ) { + $.createAjaxRequest = function( ){ + return new XMLHttpRequest(); + }; + request = new XMLHttpRequest(); + } else if ( window.ActiveXObject ) { /*jshint loopfunc:true*/ for ( i = 0; i < ACTIVEX.length; i++ ) { try { @@ -1282,11 +1283,6 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ continue; } } - } else if ( window.XMLHttpRequest ) { - $.createAjaxRequest = function( ){ - return new XMLHttpRequest(); - }; - request = new XMLHttpRequest(); } if ( !request ) { @@ -1295,6 +1291,8 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ return request; }, + + /** * Makes an AJAX request. * @function