mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
send(null) for FF2/3
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
})();
|
||||
})();
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
}
|
||||
}
|
||||
};
|
||||
this._xhr.send();
|
||||
this._xhr.send(null);
|
||||
};
|
||||
|
||||
XHRPolling.check = function(){
|
||||
|
||||
Reference in New Issue
Block a user