Make sure to disable heartbeat intervals in polling transports.

This commit is contained in:
Guillermo Rauch
2011-05-17 16:10:47 -07:00
parent f5133b6a6f
commit dfae47d42a

View File

@@ -39,16 +39,8 @@ HTTPPolling.prototype.__proto__ = HTTPTransport.prototype;
* Removes heartbeat timeouts for polling.
*/
HTTPPolling.prototype.setHeartbeatTimeout = function () {
return;
};
/**
* Removes the heartbeat timeouts for polling.
*/
HTTPPolling.prototype.clearHeartbeatTimeout = function () {
return;
HTTPPolling.prototype.setHeartbeatInterval = function () {
return this;
};
/**