mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-25 01:46:14 -04:00
add socketTransportProtocols parameter
This commit is contained in:
parent
e9e4d65ad4
commit
8b044254cc
3 changed files with 17 additions and 2 deletions
|
@ -57,6 +57,14 @@ exports.port = process.env.PORT || 9001;
|
|||
*/
|
||||
exports.ssl = false;
|
||||
|
||||
/**
|
||||
* restricts socket.io transport methods to JSONP-POLLING only
|
||||
* which is needed for IE8 browsers with deactivated native XMLHTTP support
|
||||
* see issue https://github.com/ether/etherpad-lite/pull/958
|
||||
* and https://github.com/ether/etherpad-lite/issues/245#issuecomment-4013455
|
||||
**/
|
||||
exports.socketTransportProtocols = ['xhr-polling', 'jsonp-polling', 'htmlfile'];
|
||||
|
||||
/*
|
||||
* The Type of the database
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue