browserUtil.js now works in IE6

pull/17/head
Mike Hamburg 2010-06-09 09:37:37 -07:00
parent 11066d6f14
commit 6efa96883e
1 changed files with 6 additions and 1 deletions

View File

@ -80,7 +80,12 @@ browserUtil.loadScripts = function(scriptNames, cbSuccess, cbError) {
head.appendChild(scriptE);
cb();
} else {
var xhr = new XMLHttpRequest();
var xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest;
} else if (window.ActiveXObject) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {