send(null) for FF2/3

This commit is contained in:
Guillermo Rauch
2010-12-23 17:24:58 -08:00
parent 280c999e3a
commit f75464bb6d
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
this._xhr.onreadystatechange = function(){
if (self._xhr.readyState == 3) self._onData(self._xhr.responseText);
};
this._xhr.send();
this._xhr.send(null);
};
XHRMultipart.check = function(){
@@ -33,4 +33,4 @@
return true;
};
})();
})();

View File

@@ -47,7 +47,7 @@
}
}
};
this._xhr.send();
this._xhr.send(null);
};
XHRPolling.check = function(){