mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 06:37:10 -04:00
socket.io patch for IE8
This commit is contained in:
parent
fa1531ad1f
commit
b1132940c1
1 changed files with 2 additions and 2 deletions
|
@ -272,7 +272,6 @@ async.waterfall([
|
||||||
});
|
});
|
||||||
|
|
||||||
//handle export requests
|
//handle export requests
|
||||||
// app.get('(/p)?/:pad/:rev?/export/:type', function(req, res, next)
|
|
||||||
app.get('/:pad/:rev?/export/:type', function(req, res, next)
|
app.get('/:pad/:rev?/export/:type', function(req, res, next)
|
||||||
{
|
{
|
||||||
var types = ["pdf", "doc", "txt", "html", "odt", "dokuwiki"];
|
var types = ["pdf", "doc", "txt", "html", "odt", "dokuwiki"];
|
||||||
|
@ -300,7 +299,8 @@ async.waterfall([
|
||||||
});
|
});
|
||||||
|
|
||||||
//handle import requests
|
//handle import requests
|
||||||
app.post('/p/:pad/import', function(req, res, next)
|
// app.post('/p/:pad/import', function(req, res, next)
|
||||||
|
app.post('/:pad/import', function(req, res, next)
|
||||||
{
|
{
|
||||||
//if abiword is disabled, skip handling this request
|
//if abiword is disabled, skip handling this request
|
||||||
if(settings.abiword == null)
|
if(settings.abiword == null)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue