summaryrefslogtreecommitdiff
path: root/src/node/hooks/express/socketio.js
diff options
context:
space:
mode:
authorWikinaut <mail@tgries.de>2012-08-16 01:00:36 +0200
committerWikinaut <mail@tgries.de>2012-08-16 01:00:36 +0200
commit85f5eb38e4334b18c7593282b6e0c93c155d4481 (patch)
tree75f9e418ced9962aecef30b2652b5497113cdf1d /src/node/hooks/express/socketio.js
parent6a3457dbd7cb0bfa670c1f0a1c40c33167826246 (diff)
downloadetherpad-lite-85f5eb38e4334b18c7593282b6e0c93c155d4481.zip
fix for all IE8 issues when IE8 setting NATIVE XMLHHTP SUPPORT is disabled
Diffstat (limited to 'src/node/hooks/express/socketio.js')
-rw-r--r--src/node/hooks/express/socketio.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/hooks/express/socketio.js b/src/node/hooks/express/socketio.js
index 132283a7..899eb985 100644
--- a/src/node/hooks/express/socketio.js
+++ b/src/node/hooks/express/socketio.js
@@ -29,7 +29,7 @@ exports.expressCreateServer = function (hook_name, args, cb) {
//this is only a workaround to ensure it works with all browers behind a proxy
//we should remove this when the new socket.io version is more stable
- io.set('transports', ['xhr-polling']);
+ io.set('transports', ['htmlfile','xhr-polling']);
var socketIOLogger = log4js.getLogger("socket.io");
io.set('logger', {