Fix Utilities.HTTP.doHead() brokenness

This commit is contained in:
Dan Stillman 2006-08-19 20:45:27 +00:00
parent 26668a6e73
commit 3ce672756c

View file

@ -407,7 +407,7 @@ Scholar.Utilities.HTTP = new function() {
var test = xmlhttp.open('HEAD', url, true);
xmlhttp.onreadystatechange = function(){
_stateChange(xmlhttp, callback1, callback2);
_stateChange(xmlhttp, onDone);
};
xmlhttp.send(null);