Skip to content
Snippets Groups Projects
Commit cb1699be authored by Vincent Nivoliers's avatar Vincent Nivoliers
Browse files

icecat wtill buggy, reverting

parent 20c9ef9f
No related branches found
No related tags found
No related merge requests found
......@@ -130,11 +130,10 @@ function openXML(filename, handler) {
xhttp=new ActiveXObject("Microsoft.XMLHTTP") ;
}
xhttp.addEventListener("error", handle_request_error);
//xhttp.addEventListener("readystatechange", function() {handler(this);});
xhttp.open("GET",filename, false) ;
xhttp.addEventListener("readystatechange", function() {handler(this);});
xhttp.open("GET",filename) ;
xhttp.overrideMimeType('text/xml');
xhttp.send(null) ;
handler(xhttp) ;
}
/* exploration */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment