add polling as default transport in socket.io

This commit is contained in:
Matias Alejo Garcia 2014-10-06 13:35:06 -03:00
commit a70fd64442
4 changed files with 27 additions and 9 deletions

View file

@ -15,10 +15,12 @@ var defaultConfig = {
// network layer config
network: {
testnet: {
url: 'https://test-insight.bitpay.com:443'
url: 'https://test-insight.bitpay.com:443',
transports: ['polling'],
},
livenet: {
url: 'https://insight.bitpay.com:443'
url: 'https://insight.bitpay.com:443',
transports: ['polling'],
},
},