feature(socket) max reconnection attempts: 1000000 -> Math.pow(2, 64)

This commit is contained in:
coderaiser 2013-09-16 12:42:46 +00:00
parent 3604afe2e7
commit 3997a96f26

View file

@ -19,7 +19,7 @@ var CloudCmd, Util, DOM, io;
socket = io.connect(CloudCmd.HOST, {
'reconnect' : true,
'reconnection delay' : 500,
'max reconnection attempts' : 1000000,
'max reconnection attempts' : Math.pow(2, 64),
'reconnect_failed' : function() {
Util.log('Could not reconnect. Reload page.');
}